ExcelMLFont
Describes the ExcelML Font attribute.
Definition
Namespace:Telerik.Windows.Controls.GridView
Assembly:Telerik.Windows.Controls.GridView.dll
Syntax:
public class ExcelMLFont : INotifyPropertyChanged
Inheritance: objectExcelMLFont
Implements:
Constructors
public ExcelMLFont()
Properties
Gets or sets a value that indicates whether text should be displayed bold.
public bool? Bold { get; set; }
Gets or sets the font color.
public string Color { get; set; }
The color.
Gets or sets the name of the font.
public string FontName { get; set; }
The name of the font.
Gets or sets a value that indicates whether text should be displayed italic.
public bool? Italic { get; set; }
Gets or sets a value that indicates whether outline should be displayed.
public bool? Outline { get; set; }
Gets or sets a value that indicates whether shadow should be displayed.
public bool? Shadow { get; set; }
Gets or sets a value that indicates whether text should have strike-through decoration.
public bool? StrikeThrough { get; set; }
Gets or sets a value that indicates whether text should have underline decoration.
public ExcelMLUnderline? Underline { get; set; }
Methods
Raises the PropertyChanged event.
Events
Occurs when a property value changes.
public event PropertyChangedEventHandler PropertyChanged
Implements: