Click or drag to resize

CompactNumberType Constructor

Constructs an object from a numeric value.

Namespace:  KSPDev.GUIUtils.TypeFormatters
Assembly:  KSPDev_Utils.1.0 (in KSPDev_Utils.1.0.dll) Version: 1.0 for KSP v1.6+
Syntax
C#
public CompactNumberType(
	double value
)
Request Example View Source

Parameters

value
Type: SystemDouble
The numeric value in the base units.
Examples
public class CompactNumberType1 : PartModule {
  static readonly Message<CompactNumberType> msg1 = new Message<CompactNumberType>(
      "#TypeDemo_msg1", defaultTemplate: "Value is: <<1>>");

  void Show() {
    Debug.Log(msg1.Format(0.051));
    // Prints: "Value is: 0.051"
    Debug.Log(msg1.Format(0.45));
    // Prints: "Value is: 0.45"
    Debug.Log(msg1.Format(95.45));
    // Prints: "Value is: 95.5"
    Debug.Log(msg1.Format(120.45));
    // Prints: "Value is: 121"
    Debug.Log(msg1.Format(9535.45));
    // Prints: "Value is: 9,536"
  }
}
Examples
Debug.Log(CompactNumberType.Format(0.051));
// Prints: "Value is: 0.051"
Debug.Log(CompactNumberType.Format(0.45));
// Prints: "Value is: 0.45"
Debug.Log(CompactNumberType.Format(95.45));
// Prints: "Value is: 95.5"
Debug.Log(CompactNumberType.Format(120.45));
// Prints: "Value is: 121"
Debug.Log(CompactNumberType.Format(9535.45));
// Prints: "Value is: 9,536"
Examples
Debug.Log(DistanceType.Format(1234.5678, format: "0.0000"));
// Prints: "1234.5678"
Debug.Log(DistanceType.Format(1234.5678, format: "0.00"));
// Prints: "1234.57"
Debug.Log(DistanceType.Format(1234.5678, format: "#,##0.00"));
// Prints: "1,234.57"
See Also