IFieldGroupEdit Interface

.

Description

Members

Name Description
Method AddField Adds a field with specified name to the end of this field group.
Read-only property FieldCount The number of fields in this field group.
Read-only property FieldName The name of the field at the specified index in this field group.
Read-only property FieldNames An enumerator over the names of the fields in this field group.
Read-only property IndexInGroup The index of the field with specified name in this field group.
Method InsertFieldAt Inserts a field with specified name at specified index of this field group.
Write-only property IsEditingRestrictive The restrictive editing flag of this field group.
Read-only property IsEditingRestrictive The restrictive editing flag of this field group.
Write-only property Name The name of this field group.
Read-only property Name The name of this field group.
Method RemoveAllFields Removes all fields from this field group.
Method 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.

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