Class ExcelMLFont
Describes the ExcelML Font attribute.
Inheritance
Namespace: Telerik.Windows.Controls.GridView
Assembly: Telerik.Windows.Controls.GridView.dll
Syntax
public class ExcelMLFont : Object, INotifyPropertyChanged
Constructors
ExcelMLFont()
Declaration
public ExcelMLFont()
Properties
Bold
Gets or sets a value that indicates whether text should be displayed bold.
Declaration
public Nullable<bool> Bold { get; set; }
Property Value
System.Nullable<System.Boolean>
|
Color
Gets or sets the font color.
Declaration
public string Color { get; set; }
Property Value
System.String
The color. |
FontName
Gets or sets the name of the font.
Declaration
public string FontName { get; set; }
Property Value
System.String
The name of the font. |
Italic
Gets or sets a value that indicates whether text should be displayed italic.
Declaration
public Nullable<bool> Italic { get; set; }
Property Value
System.Nullable<System.Boolean>
|
Outline
Gets or sets a value that indicates whether outline should be displayed.
Declaration
public Nullable<bool> Outline { get; set; }
Property Value
System.Nullable<System.Boolean>
|
Shadow
Gets or sets a value that indicates whether shadow should be displayed.
Declaration
public Nullable<bool> Shadow { get; set; }
Property Value
System.Nullable<System.Boolean>
|
Size
Gets or sets the size.
Declaration
public Nullable<int> Size { get; set; }
Property Value
System.Nullable<System.Int32>
The size. |
StrikeThrough
Gets or sets a value that indicates whether text should have strike-through decoration.
Declaration
public Nullable<bool> StrikeThrough { get; set; }
Property Value
System.Nullable<System.Boolean>
|
Underline
Gets or sets a value that indicates whether text should have underline decoration.
Declaration
public Nullable<ExcelMLUnderline> Underline { get; set; }
Property Value
System.Nullable<ExcelMLUnderline>
|
Methods
OnPropertyChanged(String)
Raises the PropertyChanged event.
Declaration
protected virtual void OnPropertyChanged(string name)
Parameters
System.String
name
The name. |
Events
PropertyChanged
Occurs when a property value changes.
Declaration
public event PropertyChangedEventHandler PropertyChanged
Event Type
System.ComponentModel.PropertyChangedEventHandler
|