_ColumnFormat.FieldFormat Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns or sets an Integer (int in C#) value that represents the display format of the property to which the ColumnFormat object is associated. Read/write.
public:
property int FieldFormat { int get(); void set(int value); };
public int FieldFormat { get; set; }
Public Property FieldFormat As Integer
Property Value
Remarks
The value of this property is a constant from an enumeration, where the enumeration is dependent on the value of the FieldType property for the ColumnFormat object:
FieldType value | FieldFormat enumeration | |
olCurrency | OlFormatCurrency | |
olFormatDateTime | OlFormatDateTime | |
olDuration | OlFormatDuration | |
olInteger | OlFormatInteger | |
olKeywords | OlFormatKeywords | |
olNumber | OlFormatNumber | |
olPercent | OlFormatPercent | |
olText | OlFormatText | |
olYesNo | OlFormatYesNo | |
olEnumeration | OlFormatEnumeration | |
olSmartFrom | OlFormatSmartFrom |
For field types not listed in the above table, the value of this property is ignored.