Class ResetFormAction
Represents an action that resets form fields in a document.
Inherited Members
Namespace: Telerik.Windows.Documents.Fixed.Model.Actions
Assembly: Telerik.Windows.Documents.Fixed.dll
Syntax
public class ResetFormAction : Action
  Constructors
ResetFormAction()
Initializes a new instance of the ResetFormAction class with default values setting Fields to an empty list and ResetFormType to Exclude. This configuration resets all form fields.
Declaration
public ResetFormAction()
  ResetFormAction(IEnumerable<String>, ResetFormType)
Initializes a new instance of the ResetFormAction class with the specified fields and reset form type.
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 the list of field names that are included or excluded in the reset operation.
Declaration
public List<string> Fields { get; set; }
  Property Value
| 
        System.Collections.Generic.List<System.String>
         
  | 
    
ResetFormType
Gets or sets the reset form type, which specifies whether to include or exclude the specified fields.
Declaration
public ResetFormType ResetFormType { get; set; }
  Property Value
| 
        ResetFormType
         
  |