New to Telerik UI for WinFormsStart a free 30-day trial

Holds information used when specific field type is updated as part of updating all fields in the document.

Definition

Namespace:Telerik.WinForms.Documents.Model.Fields

Assembly:Telerik.WinControls.RichTextEditor.dll

Syntax:

C#
public class FieldTypeUpdateInfo : IEquatable<FieldTypeUpdateInfo>

Inheritance: objectFieldTypeUpdateInfo

Implements: IEquatable<FieldTypeUpdateInfo>

Constructors

Initializes a new instance of the FieldTypeUpdateInfo class.

C#
public FieldTypeUpdateInfo()

Properties

Gets or sets a value indicating whether the document have to be paginated during the field update operation.

C#
public bool NeedsPagination { get; set; }
Property Value:

The needs pagination.

Gets or sets the priority of the field update operation.

C#
public int Priority { get; set; }
Property Value:

The priority.

Methods

Determines whether the specified FieldTypeUpdateInfo is equal to the current FieldTypeUpdateInfo.

C#
public bool Equals(FieldTypeUpdateInfo other)
Parameters:otherFieldTypeUpdateInfo

The FieldTypeUpdateInfo instance to compare with the current object.

Returns:

bool

true if the specified FieldTypeUpdateInfo is equal to the current FieldTypeUpdateInfo; otherwise, false.

Implements: IEquatable<FieldTypeUpdateInfo>.Equals(FieldTypeUpdateInfo)

Determines whether the specified object is equal to the current object.

C#
public override bool Equals(object obj)
Parameters:objobject

The object to compare with the current object.

Returns:

bool

true if the specified object is equal to the current object; otherwise, false.

Overrides: object.Equals(object)

Serves as a hash function for a particular type.

C#
public override int GetHashCode()
Returns:

int

A hash code for the current object.

Overrides: object.GetHashCode()