IFieldEdit Interface 接口

时间:2023-05-23 18:12:32

Description

The IFieldEdit interface is used when creating new fields. You should not use it to modify fields, for that purpose use IClassSchemaEdit. In general, when modifying fields, the restrictions that apply in ArcCatalog also apply in ArcObjects; for example, you cannot change the name or type of a field.

Members

  All
Properties
Methods
Inherited
Non-inherited
Description
IFieldEdit Interface 接口 AliasName The alias name of the field.
IFieldEdit Interface 接口 AliasName The alias name of the field.
IFieldEdit Interface 接口 CheckValue Indicates if the value is valid given the field definition.
IFieldEdit Interface 接口 DefaultValue The default value of the field.
IFieldEdit Interface 接口 DefaultValue The default value of the field.
IFieldEdit Interface 接口 Domain The default domain of the field.
IFieldEdit Interface 接口 Domain The default domain of the field.
IFieldEdit Interface 接口 DomainFixed Indicates if the field's domain cannot be modified.
IFieldEdit Interface 接口 DomainFixed Indicates if the field's domain is fixed.
IFieldEdit Interface 接口 Editable Indicates if the field can be edited. This should always be set to true.
IFieldEdit Interface 接口 Editable Indicates if the field is editable.
IFieldEdit Interface 接口 GeometryDef The geometry definition for the field if IsGeometry is TRUE.
IFieldEdit Interface 接口 GeometryDef The geometry definition if IsGeometry is TRUE.
IFieldEdit Interface 接口 IsNullable Indicates if field values can be null.
IFieldEdit Interface 接口 IsNullable Indicates if the field can contain null values.
IFieldEdit Interface 接口 Length The maximum length, in bytes, for field values.
IFieldEdit Interface 接口 Length The maximum length, in bytes, for values described by the field.
IFieldEdit Interface 接口 Name The name of the field.
IFieldEdit Interface 接口 Name The name of the field.
IFieldEdit Interface 接口 Precision The precision for field values.
IFieldEdit Interface 接口 Precision The precision for field values.
IFieldEdit Interface 接口 Required Indicates if the field is required.
IFieldEdit Interface 接口 Required Indicates if the field is required.
IFieldEdit Interface 接口 Scale The scale for field values.
IFieldEdit Interface 接口 Scale The scale for field values.
IFieldEdit Interface 接口 Type The type for the field.
IFieldEdit Interface 接口 Type The type of the field.
IFieldEdit Interface 接口 VarType The VARTYPE of the field (e.g. VT_I4).

Inherited Interfaces

Interfaces Description
IField Provides access to members that return information about the field.

Classes that implement IFieldEdit

Classes Description
Field ESRI Field object.
[C#]

When using C# (and other .NET languages) you must append an "_2" to the property you want to set on this interface. For example fieldEdit.Name_2 = "NewFieldName".