ArcFM Engine Developer Guide
SupportedFieldTypes Property


This property specifies the type of fields supported by the custom editor. This editor can support multiple field types.
Syntax
'Declaration
 
<DispIdAttribute(4)>
ReadOnly Property SupportedFieldTypes As ESRI.ArcGIS.Geodatabase.esriFieldType()
'Usage
 
Dim instance As IMMCustomFieldEditor
Dim value() As ESRI.ArcGIS.Geodatabase.esriFieldType
 
value = instance.SupportedFieldTypes
[DispId(4)]
ESRI.ArcGIS.Geodatabase.esriFieldType[] SupportedFieldTypes {get;}

Property Value

Returns an array as esriFieldType
Example
The following code sample demonstrates how the IMMCustomFieldEditor::SupportedFieldTypes property may be implemented.
Visual Basic Copy Code
Private Property Get IMMCustomFieldEditor_SupportedFieldTypes() As esriFieldType()
    Dim x(0) As esriFieldType
    x(0) = esriFieldTypeString
    IMMCustomFieldEditor_SupportedFieldTypes = x
End Property
Requirements

Target Platforms: Windows XP SP3 (32-bit and 64-bit), Windows 7 (32-bit and 64-bit)

Not all Operating Systems are supported on all products. Visit the ArcFM Solution Supported Versions page for full details.

See Also

Reference

IMMCustomFieldEditor Interface
IMMCustomFieldEditor Members

 

 


Send Comment