Class FormInfo
- Namespace
- CMS.FormEngine
- Assembly
- CMS.FormEngine.dll
Ensures management of XML file that represents the form definition.
public class FormInfo : DataDefinition, IStructuredData
- Inheritance
-
objectFormInfo
- Implements
- Inherited Members
- Extension Methods
Constructors
FormInfo()
Empty constructor
public FormInfo()
FormInfo(string)
Constructor, creates the form info structure and loads specified form definition.
public FormInfo(string formDefinition)
Parameters
formDefinition
stringXML definition of the form
Methods
AddFormCategory(FormCategoryInfo, int)
Add a form category at the specified index or at the end if the index is not specified.
[Obsolete("Use AddFormItem(IDataDefinitionItem, int) instead.")]
[ObsoleteSince(28, 0)]
public void AddFormCategory(FormCategoryInfo categObj, int index = -1)
Parameters
categObj
FormCategoryInfoFormCategoryInfo object with data to add
index
intIndex to which to add the category
AddFormItem(IDataDefinitionItem, int)
Adds form item at the specified index or at the end if the index is not specified.
public void AddFormItem(IDataDefinitionItem formItem, int index = -1)
Parameters
formItem
IDataDefinitionItemInserted form item
index
intIndex of newly inserted item
Clone()
Clones the object.
public FormInfo Clone()
Returns
CombineWithForm(FormInfo, CombineWithFormSettings)
Combines the form with another form info.
public void CombineWithForm(FormInfo newForm, CombineWithFormSettings settings)
Parameters
newForm
FormInfoForm to include
settings
CombineWithFormSettingsCombine settings
CombineWithForm(FormInfo, bool, string, bool, bool)
Combines the form with another form info.
[Obsolete("Method is deprecated and will be removed in the next version. Use CombineWithForm(FormInfo, CombineWithFormSettings) instead.")]
[ObsoleteSince(28, 0)]
public void CombineWithForm(FormInfo newForm, bool overwriteExisting, string excludeColumns = null, bool includeCategories = false, bool preserveCategory = true)
Parameters
newForm
FormInfoForm to include
overwriteExisting
boolIf true, existing fields from source form are overwritten by new form fields if their names match
excludeColumns
stringColumns to exclude from form combining, separated by semicolon (;)
includeCategories
boolIf true, categories from the new form will be added
preserveCategory
boolIf false than even if overwriteExisting is false, field is moved to the current category (but the properties of the field are not overwritten)
EnsureDefaultValues(IDataContainer, FormResolveTypeEnum)
Ensures the default values into the data container.
[Obsolete("Method is deprecated and will be removed in the next version. Use LoadDefaultValues(IDataContainer, FormResolveTypeEnum, bool) instead.")]
[ObsoleteSince(28, 0)]
public bool EnsureDefaultValues(IDataContainer container, FormResolveTypeEnum resolveType = FormResolveTypeEnum.None)
Parameters
container
IDataContainerContainer to load
resolveType
FormResolveTypeEnumType of macro resolving
Returns
- bool
FieldExists(string)
Returns true if the given field exists in the form definition
public bool FieldExists(string fieldName)
Parameters
fieldName
stringField name to check
Returns
- bool
GetCategoryNames()
Returns an List of category names.
public List<string> GetCategoryNames()
Returns
- List<string>
GetColumnNames(bool, Func<FormFieldInfo, bool>)
Returns an List of field names.
public List<string> GetColumnNames(bool includeDummyFields = true, Func<FormFieldInfo, bool> order = null)
Parameters
includeDummyFields
boolIndicates if dummy fields should be included.
order
Func<FormFieldInfo, bool>Allows to order fields before names are returned.
Returns
- List<string>
GetEmptyFormDocument()
Gets empty root FormInfo XML node.
public static XmlDocument GetEmptyFormDocument()
Returns
- XmlDocument
GetFields(bool, bool, bool, bool, bool)
Returns an List of FormFieldInfo objects.
public List<FormFieldInfo> GetFields(bool visible, bool invisible, bool includeSystem = true, bool onlyPrimaryKeys = false, bool includeDummyFields = true)
Parameters
visible
boolIndicates whether object with visible set to 'True' should be returned
invisible
boolIndicates whether object with visible set to 'False' should be returned
includeSystem
boolIndicates whether also system fields are included
onlyPrimaryKeys
boolIndicates whether only primary keys should be returned
includeDummyFields
boolIndicates whether dummy fields are included
Returns
- List<FormFieldInfo>
GetFields(string)
Returns the List of the FormFieldInfo objects.
public List<FormFieldInfo> GetFields(string fieldDataType)
Parameters
fieldDataType
stringForm field data type
Returns
- List<FormFieldInfo>
GetFormCategory(string)
Returns CategoryInfo object specified by category name.
public FormCategoryInfo GetFormCategory(string name)
Parameters
name
stringCategory name
Returns
GetFormElements(bool, bool, bool)
Returns the List of the form elements.
public List<IDataDefinitionItem> GetFormElements(bool visible, bool invisible, bool hideSystemFields = false)
Parameters
visible
boolReturn visible fields
invisible
boolReturn invisible fields
hideSystemFields
boolReturn non-system fields only
Returns
- List<IDataDefinitionItem>
GetFormField(Guid)
Returns field object with data from specified field.
public FormFieldInfo GetFormField(Guid guid)
Parameters
guid
GuidForm field guid
Returns
- FormFieldInfo
Field or null if field does not exist
GetFormField(string)
Returns field object with data from specified field.
public FormFieldInfo GetFormField(string fieldName)
Parameters
fieldName
stringField to get data from
Returns
- FormFieldInfo
Field or null if field does not exist
GetFormSchema(string)
Returns SchemaInfo object specified by schema name.
public FormSchemaInfo GetFormSchema(string schemaName)
Parameters
schemaName
stringSchema name
Returns
Exceptions
- ArgumentException
Thrown when
schemaName
is null or empty.
GetXmlDefinition()
Returns FormInfo definition in XML.
public string GetXmlDefinition()
Returns
- string
GetXmlElement(XmlDocument)
Gets the XML element for the data
public override XmlElement GetXmlElement(XmlDocument doc)
Parameters
doc
XmlDocumentParent XML document
Returns
- XmlElement
LoadDefaultValues(IDataContainer, FormResolveTypeEnum, bool)
Loads the default values into the data container.
public void LoadDefaultValues(IDataContainer container, FormResolveTypeEnum resolveType = FormResolveTypeEnum.None, bool onlyVisible = false)
Parameters
container
IDataContainerContainer to load
resolveType
FormResolveTypeEnumType of macro resolving
onlyVisible
boolIf set True data are loaded for visible fields only; default value is False
LoadItem(XmlNode)
Loads the item from the XML node
protected override IDataDefinitionItem LoadItem(XmlNode node)
Parameters
node
XmlNodeXML node
Returns
MoveFormItem(int, int)
Moves form item in the form items collection from source index to destination index.
public void MoveFormItem(int sourceIndex, int destinationIndex)
Parameters
sourceIndex
intIndex of the form item to be moved.
destinationIndex
intIndex where to move the form item.
NewCategoryDefinition()
Creates a new category definition object.
protected virtual IDataDefinitionItem NewCategoryDefinition()
Returns
NewFieldDefinition()
Creates a new field definition object.
protected override IDataDefinitionItem NewFieldDefinition()
Returns
NewSchemaDefinition()
Creates a new schema definition object.
protected virtual IDataDefinitionItem NewSchemaDefinition()
Returns
RemoveEmptyCategories()
Removes all categories from the form that do not contain any fields
public void RemoveEmptyCategories()
RemoveFields(Func<FormFieldInfo, bool>)
Removes fields matching the given condition
public bool RemoveFields(Func<FormFieldInfo, bool> condition)
Parameters
condition
Func<FormFieldInfo, bool>Field condition
Returns
- bool
Returns true if at least one item was removed
RemoveFormCategory(string)
Remove specified form category.
public void RemoveFormCategory(string categoryName)
Parameters
categoryName
stringName of a category to remove
RemoveFormField(string)
Removes specified form field.
public bool RemoveFormField(string fieldName)
Parameters
fieldName
stringName of a field to remove
Returns
- bool
True if successfully removed, false otherwise
RemoveFormSchema(string)
Remove specified form schema.
public void RemoveFormSchema(string schemaName)
Parameters
schemaName
stringName of a schema to remove.
Exceptions
- ArgumentException
Thrown when
schemaName
is null or empty.- InvalidOperationException
Thrown when no schema with
schemaName
name was found.
UpdateFormCategory(string, FormCategoryInfo)
Update specified category node.
public void UpdateFormCategory(string categoryName, FormCategoryInfo fci)
Parameters
categoryName
stringName of category to update
fci
FormCategoryInfoFormCategoryInfo object with data for update
UpdateFormField(string, FormFieldInfo)
Update specified field node.
public void UpdateFormField(string fieldName, FormFieldInfo field)
Parameters
fieldName
stringName of a field to update
field
FormFieldInfoData for update
Exceptions
- ArgumentOutOfRangeException
Field fieldName does not exist
UpdateFormSchema(string, FormSchemaInfo)
Update specified schema node.
public void UpdateFormSchema(string schemaName, FormSchemaInfo formSchemaInfo)
Parameters
schemaName
stringName of schema to update.
formSchemaInfo
FormSchemaInfoFormSchemaInfo object with data for update.
Exceptions
- ArgumentException
Thrown when
schemaName
is null or empty.- ArgumentNullException
Thrown when
formSchemaInfo
is null.- InvalidOperationException
Thrown when no schema with
schemaName
name was found.