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

Represents the serialization data for a list in the Telerik document model.

Definition

Namespace:Telerik.Windows.Documents.Model

Assembly:Telerik.Windows.Controls.RichTextBox.dll

Syntax:

C#
public class ListSerializationData

Inheritance: objectListSerializationData

Constructors

C#
public ListSerializationData()
C#
public ListSerializationData(int listID, int listStyleID, bool newListOnInsert)
Parameters:listIDintlistStyleIDintnewListOnInsertbool

Properties

Gets the unique identifier for the list serialization data.

C#
[XamlSerializable]
public int ID { get; set; }

Initializes a new instance of the ListSerializationData class when a new list is inserted.

C#
[XamlSerializable(false)]
public bool NewListOnInsert { get; set; }

Gets or sets the style identifier associated with the list serialization data.

C#
[XamlSerializable]
public int StyleID { get; set; }
Property Value:

The style identifier as a string. This value specifies the style used for the list.

Methods

Compares the current instance of ListSerializationData with another object for equality.

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

The object to compare with the current instance.

Returns:

bool

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

Overrides: object.Equals(object)

Returns a hash code for the current instance of the ListSerializationData class.

C#
public override int GetHashCode()
Returns:

int

A 32-bit signed integer that represents the hash code for the current object.

Overrides: object.GetHashCode()