ClassSequentialField
Represents a field in a document that allows for sequential data entry. This class is used to manage and manipulate sequential fields within documents to ensure data is entered in the correct order.
Definition
Namespace:Telerik.Windows.Documents.Model
Assembly:Telerik.Windows.Controls.RichTextBox.dll
Syntax:
public class SequentialField : CodeBasedField, ISupportInitialize
Inheritance: objectFieldCodeBasedFieldSequentialField
Implements:
Inherited Members
Constructors
SequentialField()
Declaration
public SequentialField()
Fields
RestartCountingOnHeadingLevelProperty
Gets or sets a value indicating whether to restart counting on a specific heading level.
Declaration
public static readonly FieldPropertyDefinition RestartCountingOnHeadingLevelProperty
Field Value
SequenceIDProperty
Gets the sequence ID of the SequentialField.
Declaration
public static readonly FieldPropertyDefinition SequenceIDProperty
Field Value
Properties
FieldTypeName
Gets the name of the field type.
Declaration
public override string FieldTypeName { get; }
Property Value
Overrides
RestartCountingOnHeadingLevel
Gets or sets a value indicating whether to restart counting on a specific heading level.
Declaration
[XamlSerializable]
public int? RestartCountingOnHeadingLevel { get; set; }
Property Value
int?
SequenceID
Declaration
[XamlSerializable]
public string SequenceID { get; set; }
Property Value
Methods
BuildCodeOverride()
Builds the field-specific parts of the code fragment, using the current CodeBuilder.
Declaration
protected override void BuildCodeOverride()
Overrides
CopyPropertiesFrom(Field)
Copies all properties from another field of the same type.
Declaration
public override void CopyPropertiesFrom(Field fromField)
Parameters
fromField
The other field, which has to be of the same type as the current instance.
Overrides
CopyPropertiesFromCodeExpression(FieldCodeExpression)
Copies the field-specific properties from a FieldCodeExpression.
Declaration
protected override void CopyPropertiesFromCodeExpression(FieldCodeExpression fieldCodeExpression)
Parameters
fieldCodeExpression
The field code expression.
Overrides
CreateInstance()
Creates a new instance of the current field class.
Declaration
public override Field CreateInstance()
Returns
The new field instance.
Overrides
GetResultFragment()
Builds the result fragment of the field.
Declaration
protected override DocumentFragment GetResultFragment()
Returns
The result fragment.
Overrides