'Declaration Public Function New( _ ByVal name As String, _ ByVal value As Double, _ Optional ByVal formatting As Formatting _ )
'Usage Dim name As String Dim value As Double Dim formatting As Formatting Dim instance As New CustomProperty(name, value, formatting)
public CustomProperty( string name, double value, Formatting formatting )
Parameters
- name
- The name of the custom property.
- value
- The value of the custom property.
- formatting
- The formatting of the custom property value. By default, Null.
Return Value
The newly created custom property.