Click or drag to resize
PbNumericDisplayFormat Class

Class to define a numeric display format.

Inheritance Hierarchy
SystemObject
  OIV.InventorSoNetBase
    OIV.MeshViz.GraphPbBase
      OIV.MeshViz.GraphPbNumericDisplayFormat

Namespace: OIV.MeshViz.Graph
Assembly: OIV.MeshViz (in OIV.MeshViz.dll) Version: 2024.1.1.0 (2024.1.1)
Syntax
public class PbNumericDisplayFormat : PbBase

The PbNumericDisplayFormat type exposes the following members.

Constructors
Methods
  NameDescription
Public methodCopyFrom(PbBase)

Assignment operator.

(Inherited from PbBase.)
Public methodCopyFrom(PbNumericDisplayFormat)

Assignment operator.

Public methodEnableConnection

Activates/deactivates the mechanism of connection.

(Inherited from PbBase.)
Public methodEquals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Public methodGetFormat

Gets the numerical display format.

Public methodGetHashCode
Overrides GetHashCode().
(Inherited from SoNetBase.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodIsConnectionEnabled

Returns true if the connection mechanism is active, otherwise false.

(Inherited from PbBase.)
Public methodSetFormat
Calls SetFormat(OIV.MeshViz.Graph.PbNumericDisplayFormat.FormatTypes( .PbNumericDisplayFormat.AUTO_FORMAT ), System.Int32(0), System.Int32(0)).
Public methodSetFormat(PbNumericDisplayFormatFormatTypes)
Calls SetFormat(type, System.Int32(0), System.Int32(0)).
Public methodSetFormat(PbNumericDisplayFormatFormatTypes, Int32)
Calls SetFormat(type, tenPower, System.Int32(0)).
Public methodSetFormat(PbNumericDisplayFormatFormatTypes, Int32, Int32)

Sets the numerical display format.

Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Public methodTouch

Simulates the changing of an instance of this object, so all connected objects are informed of this change.

(Inherited from PbBase.)
Top
Remarks

This class is used to define a numerical display format for numerical values to be displayed. There are three formats available: automatic format, floating point format, integer format. The default format is the automatic format. The automatic format selects the best format adapted to the domain of values to be displayed. The floating point format and the integer format divide the numerical value to be displayed by the power of ten, and then display it in the selected format.

See Also