Provides access to members for working with a set of contingent values.
Members
Name | Description | |
---|---|---|
AddFieldGroup | Create a new group of fields that can have contingent values. | |
AddFieldToFieldGroup | Add a field to a field group. Adds to end if fieldPosition is -1. | |
AlterContingentValues | Alter contingent values. Takes a set of contingent values to insert or update, and a list to delete. | |
ContingentValues | The contingent values of the class. | |
DeleteFieldGroup | Remove a group of fields that can have contingent values. Removes all contingent values associated with that group. | |
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. | |
FieldGroups | The field groups of the class. | |
FindFieldGroup | Find an existing group of fields that can have contingent values. | |
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 |
---|