Class ResetFormAction
Reset the values of interactive form fields, optionally limiting the operation to a specified subset.
Inherited Members
Namespace: Telerik.Windows.Documents.Fixed.Model.Actions
Assembly: Telerik.Windows.Documents.Fixed.dll
Syntax
public class ResetFormAction : Action
Constructors
ResetFormAction()
Create a reset action with Fields empty and ResetFormType set to Exclude, which resets all fields.
Declaration
public ResetFormAction()
ResetFormAction(IEnumerable<String>, ResetFormType)
Create a reset action that includes or excludes the provided field names.
Declaration
public ResetFormAction(IEnumerable<string> fieldsNames, ResetFormType resetFormType = ResetFormType.Exclude)
Parameters
|
System.Collections.Generic.IEnumerable<System.String>
fieldsNames
A collection of field names to be included or excluded in the reset operation. |
|
ResetFormType
resetFormType
Specifies whether the reset operation should include or exclude the specified fields. Default is Exclude. |
Properties
Fields
Gets or sets field names to include or exclude from the reset operation.
Declaration
public List<string> Fields { get; set; }
Property Value
|
System.Collections.Generic.List<System.String>
|
ResetFormType
Gets or sets whether Fields are included in or excluded from the reset.
Declaration
public ResetFormType ResetFormType { get; set; }
Property Value
|
ResetFormType
|