Class UIFormFieldsManager
Provides CRUD operations over UI form fields and categories.
public class UIFormFieldsManager : AbstractFieldManager, IUIFormFieldsManager, IDataClassFieldsManager, ICategoryFieldsManager
- Inheritance
-
objectAbstractFieldManagerUIFormFieldsManager
- Implements
- Extension Methods
Methods
CreateCategory(string, FormCategoryInfo)
Tries to create a new category with data from formCategory
.
public FieldValidationResult CreateCategory(string className, FormCategoryInfo formCategory)
Parameters
className
stringClass name or alternative form name of the form the field belongs to.
formCategory
FormCategoryInfoCategory containing the data of the new category.
Returns
- FieldValidationResult
Instance of FieldValidationResult, if the validation result is valid, new category was created. Otherwise it was not and validation result indicates why.
Exceptions
- ArgumentNullException
No category definition was provided.
- InvalidOperationException
The corresponding data class was not found.
CreateField(string, FormFieldInfo)
Tries to create a new field with data from formField
.
public FieldValidationResult CreateField(string className, FormFieldInfo formField)
Parameters
className
stringClass name or alternative form name of the form the field belongs to.
formField
FormFieldInfoField containing the data of the new field.
Returns
- FieldValidationResult
Instance of FieldValidationResult, if the validation result is valid, new field was created. Otherwise it was not and validation result indicates why.
Exceptions
- ArgumentNullException
No field definition was provided.
- InvalidOperationException
The corresponding data class was not found.
DeleteField(string, string)
Tries to delete a field specified by fieldName
public FieldValidationResult DeleteField(string className, string fieldName)
Parameters
className
stringClass name or alternative form name of the form the field belongs to.
fieldName
stringName of the field to be deleted.
Returns
- FieldValidationResult
Instance of FieldValidationResult if the validation result is valid and the field was deleted. Otherwise, it is not deleted and the validation result indicates why.
Exceptions
- InvalidOperationException
The corresponding data class was not found.
MoveField(string, int, int)
Updates the form definition for the given className
reordering it's fields.
public void MoveField(string className, int sourceIndex, int destinationIndex)
Parameters
className
stringClass name or alternative form name of the form the field belongs to.
sourceIndex
intIndex of the field to be moved in the form fields collection.
destinationIndex
intIndex where to move the field in the form fields collection.
Exceptions
- InvalidOperationException
Unknown
className
provided.- ArgumentOutOfRangeException
sourceIndex
ordestinationIndex
are out of range of the form field collection of the class.
UpdateCategory(string, string, FormCategoryInfo)
Tries to update a category given by categoryName
with data from formCategory
.
public FieldValidationResult UpdateCategory(string className, string categoryName, FormCategoryInfo formCategory)
Parameters
className
stringClass name or alternative form name of the form the field belongs to.
categoryName
stringName of a category that is being updated.
formCategory
FormCategoryInfoCategory which contains updated data.
Returns
- FieldValidationResult
Instance of FieldValidationResult, if the validation result is valid, update was performed. Otherwise it was not and validation result indicates why.
Exceptions
- ArgumentNullException
No category definition provided.
- InvalidOperationException
Unknown
className
orcategoryName
provided.
UpdateField(string, string, FormFieldInfo)
Tries to update a field given by fieldName
with data from formField
.
public FieldValidationResult UpdateField(string className, string fieldName, FormFieldInfo formField)
Parameters
className
stringClass name or alternative form name of the form the field belongs to.
fieldName
stringName of a field that is being updated.
formField
FormFieldInfoField which contains updated data.
Returns
- FieldValidationResult
Instance of FieldValidationResult, if the validation result is valid, update was performed. Otherwise it was not and validation result indicates why.
Exceptions
- ArgumentNullException
No field definition provided.
- InvalidOperationException
Unknown
className
orfieldName
provided.