.
Description
Members
| Name | Description | |
|---|---|---|
![]() |
AddField | Adds a field with specified name to the end of this field group. |
![]() |
FieldCount | The number of fields in this field group. |
![]() |
FieldName | The name of the field at the specified index in this field group. |
![]() |
FieldNames | An enumerator over the names of the fields in this field group. |
![]() |
IndexInGroup | The index of the field with specified name in this field group. |
![]() |
InsertFieldAt | Inserts a field with specified name at specified index of this field group. |
![]() |
IsEditingRestrictive | The restrictive editing flag of this field group. |
![]() |
IsEditingRestrictive | The restrictive editing flag of this field group. |
![]() |
Name | The name of this field group. |
![]() |
Name | The name of this field group. |
![]() |
RemoveAllFields | Removes all fields from this field group. |
![]() |
RemoveField | Removes a field at specified index or with specified name from this field group. |
IFieldGroupEdit.AddField Method
Adds a field with specified name to the end of this field group.
Public Sub AddField ( _
    ByVal FieldName As String _
)
public void AddField (
    string FieldName
);
IFieldGroupEdit.InsertFieldAt Method
Inserts a field with specified name at specified index of this field group.
Public Sub InsertFieldAt ( _
    ByVal IndexInGroup As Integer, _
    ByVal FieldName As String _
)
public void InsertFieldAt (
    int IndexInGroup,
    string FieldName
);
IFieldGroupEdit.IsEditingRestrictive Property
The restrictive editing flag of this field group.
Public WriteOnly Property IsEditingRestrictive_2
public void IsEditingRestrictive_2 {set;}
IFieldGroupEdit.IsEditingRestrictive Property
The restrictive editing flag of this field group.
Public WriteOnly Property IsEditingRestrictive_2
public void IsEditingRestrictive_2 {set;}
IFieldGroupEdit.Name Property
The name of this field group.
Public WriteOnly Property Name_2
public void Name_2 {set;}
IFieldGroupEdit.Name Property
The name of this field group.
Public WriteOnly Property Name_2
public void Name_2 {set;}
IFieldGroupEdit.RemoveAllFields Method
Removes all fields from this field group.
Public Sub RemoveAllFields ( _
)
public void RemoveAllFields (
);
IFieldGroupEdit.RemoveField Method
Removes a field at specified index or with specified name from this field group.
Public Sub RemoveField ( _
    ByVal indexInGroupOrName As Object _
)
public void RemoveField (
    object indexInGroupOrName
);
Inherited Interfaces
| Interfaces | Description |
|---|---|
| IFieldGroup | . |
Classes that implement IFieldGroupEdit
| Classes | Description |
|---|---|
| FieldGroup | Provides access to standard operations on field group objects. |
Remarks
When using C# (and other .NET languages) you must append an "_2" to the property you want to set on this interface.


