IFieldInfo Interface

Provides access to properties that give extended information on the field.

Members

Name Description
Read/write property Alias The alias for the field.
Read-only property AsString The string representation of a given value based on the current field information.
Read/write property Highlight Indicates how the field should be presented.
Read/write property NumberFormat The number format for the field (invalid if non-numeric field).
Read/write property Readonly Indicates how the field should be presented.
Read/write property ValueAsRatio Indicates if the field value should be the ratio of itself.
Read/write property 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.

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.