ListLevelStyle
Represents the style and formatting for a specific level in a multi-level list.
Definition
Namespace:Telerik.Windows.Documents.Model
Assembly:Telerik.Windows.Controls.RichTextBox.dll
Syntax:
public class ListLevelStyle : INotifyPropertyChanged
Inheritance: objectListLevelStyle
Implements:
Constructors
public ListLevelStyle()
Properties
FontFamily
FontFamily
Gets or sets the font family for the list level style.
public FontFamily FontFamily { get; set; }
The font family applied to the list level style. This property determines the typeface used for the text in the list item.
FontWeight
FontWeight
Gets or sets the font weight of the list level style.
public FontWeight FontWeight { get; set; }
A value indicating the font weight for the list level style, which can be used to define how bold or light the text appears.
ForeColor
Color
Gets or sets the foreground color for the list level style.
public Color ForeColor { get; set; }
A Color that represents the foreground color of the list level style.
Represents the hanging indent style for a list level in a document model.
[XamlSerializable]
public double HangingIndent { get; set; }
Gets or sets the indentation of the list level style.
[XamlSerializable]
public double Indent { get; set; }
Gets or sets the level text for the list level style.
[XamlSerializable]
public string LevelText { get; set; }
A string representing the text format for the list item level. The format can include numeric or alphabetical indicators, along with any additional formatting required by the list style.
Represents the numbering format for a specific list level style in the Telerik document model.
[XamlSerializable]
public ListNumberingFormat NumberingFormat { get; set; }
Gets the span properties for the list level style.
public SpanProperties SpanProperties { get; set; }
The span properties that define the styling for the list level.
Gets or sets the starting index for the list level style.
[XamlSerializable]
public int StartingIndex { get; set; }
The starting index of the list level style. The default value is 0.
Methods
Determines whether the specified object is equal to the current ListLevelStyle instance.
Serves as a hash function for the current instance of the ListLevelStyle class. This method is typically used in hashing algorithms and data structures such as hash tables.
public override int GetHashCode()
A hash code for the current ListLevelStyle instance, represented as an integer.
Overrides:
Events
public event PropertyChangedEventHandler PropertyChanged
Implements: