Provides access to properties that give extended information on the field.
Members
Name | Description | |
---|---|---|
Alias | The alias for the field. | |
AsString | The string representation of a given value based on the current field information. | |
Highlight | Indicates how the field should be presented. | |
NumberFormat | The number format for the field (invalid if non-numeric field). | |
Readonly | Indicates how the field should be presented. | |
ValueAsRatio | Indicates if the field value should be the ratio of itself. | |
Visible | Indicates if the field is visible. |
IFieldInfo.Alias Property
The alias for the field.
Public Property Alias As String
public string Alias {get; set;}
IFieldInfo.AsString Property
The string representation of a given value based on the current field information.
Public Function get_AsString ( _
ByVal Value As Object _
) As String
public string get_AsString (
object Value
);
IFieldInfo.Highlight Property
Indicates how the field should be presented.
Public Property Highlight As Boolean
public bool Highlight {get; set;}
IFieldInfo.NumberFormat Property
The number format for the field (invalid if non-numeric field).
Public Property NumberFormat As INumberFormat
public INumberFormat NumberFormat {get; set;}
IFieldInfo.Readonly Property
Indicates how the field should be presented.
Public Property Readonly As Boolean
public bool Readonly {get; set;}
IFieldInfo.ValueAsRatio Property
Indicates if the field value should be the ratio of itself.
Public Property ValueAsRatio As Boolean
public bool ValueAsRatio {get; set;}
IFieldInfo.Visible Property
Indicates if the field is visible.
Public Property Visible As Boolean
public bool Visible {get; set;}
Classes that implement IFieldInfo
Classes | Description |
---|
Remarks
The IFieldInfo interface allows you to set an alias for the field, set the number format if the field is numeric, set the visibility flag for the field, and return a string representation of a value in the field.