IContingentValuesEdit Interface

Provides access to members for working with a set of contingent values.

Members

Name Description
Method AddFieldGroup Create a new group of fields that can have contingent values.
Method AddFieldToFieldGroup Add a field to a field group. Adds to end if fieldPosition is -1.
Method AlterContingentValues Alter contingent values. Takes a set of contingent values to insert or update, and a list to delete.
Read-only property ContingentValues The contingent values of the class.
Method DeleteFieldGroup Remove a group of fields that can have contingent values. Removes all contingent values associated with that group.
Method FieldGroupAltered Alter field group. Takes in a field group name and a field group object. Finds the field group with specified name and update its values in place.
Read-only property FieldGroups The field groups of the class.
Method FindFieldGroup Find an existing group of fields that can have contingent values.
Method RemoveFieldFromFieldGroup Remove a field from a field group.

IContingentValuesEdit.AddFieldGroup Method

Create a new group of fields that can have contingent values.

Public Sub AddFieldGroup ( _
    ByVal FieldGroup As IFieldGroup _
)
public void AddFieldGroup (
    IFieldGroup FieldGroup
);

IContingentValuesEdit.AddFieldToFieldGroup Method

Add a field to a field group. Adds to end if fieldPosition is -1.

Public Sub AddFieldToFieldGroup ( _
    ByVal fieldGroupName As String, _
    ByVal FieldName As String, _
    ByVal fieldPosition As Integer _
)
public void AddFieldToFieldGroup (
    string fieldGroupName,
    string FieldName,
    int fieldPosition
);

IContingentValuesEdit.AlterContingentValues Method

Alter contingent values. Takes a set of contingent values to insert or update, and a list to delete.

Public Sub AlterContingentValues ( _
    ByVal insertsAndUpdates As ISet, _
    ByVal Deletes As ILongArray _
)
public void AlterContingentValues (
    ISet insertsAndUpdates,
    ILongArray Deletes
);

IContingentValuesEdit.DeleteFieldGroup Method

Remove a group of fields that can have contingent values. Removes all contingent values associated with that group.

Public Sub DeleteFieldGroup ( _
    ByVal fieldGroupName As String _
)
public void DeleteFieldGroup (
    string fieldGroupName
);

IContingentValuesEdit.FieldGroupAltered Method

Alter field group. Takes in a field group name and a field group object. Finds the field group with specified name and update its values in place.

Public Sub FieldGroupAltered ( _
    ByVal fieldGroupName As String, _
    ByVal FieldGroup As IFieldGroup _
)
public void FieldGroupAltered (
    string fieldGroupName,
    IFieldGroup FieldGroup
);

IContingentValuesEdit.RemoveFieldFromFieldGroup Method

Remove a field from a field group.

Public Sub RemoveFieldFromFieldGroup ( _
    ByVal fieldGroupName As String, _
    ByVal FieldName As String _
)
public void RemoveFieldFromFieldGroup (
    string fieldGroupName,
    string FieldName
);

Inherited Interfaces

Interfaces Description
IContingentValues Provides access to members for working with a set of contingent values.

Classes that implement IContingentValuesEdit

Classes Description

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