ClassListStyleEqualityComparer
Class
Compares two list styles for equality.
Definition
Namespace:Telerik.Windows.Documents.Lists
Assembly:Telerik.Windows.Controls.RichTextBox.dll
Syntax:
cs-api-definition
public class ListStyleEqualityComparer : IEqualityComparer<DocumentList>
Inheritance: objectListStyleEqualityComparer
Implements:
Constructors
ListStyleEqualityComparer()
Declaration
cs-api-definition
public ListStyleEqualityComparer()
Methods
Equals(DocumentList, DocumentList)
Compares two DocumentList objects for equality based on their list styles.
Declaration
cs-api-definition
public bool Equals(DocumentList x, DocumentList y)
Parameters
x
The first DocumentList to compare.
y
The second DocumentList to compare.
Returns
True if the two DocumentList objects are considered equal; otherwise, false.
Implements
GetHashCode(DocumentList)
Gets the hash code for the specified DocumentList.
Declaration
cs-api-definition
public int GetHashCode(DocumentList obj)
Parameters
obj
The DocumentList instance for which the hash code is to be computed.
Returns
Returns the hash code as an integer.
Implements