Class ExcelMLFont
Describes the ExcelML Font attribute.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Controls.GridView
Assembly: Telerik.Windows.Controls.GridView.dll
Syntax
public class ExcelMLFont : INotifyPropertyChanged
Constructors
ExcelMLFont()
Declaration
public ExcelMLFont()
Properties
Bold
Gets or sets a value that indicates whether text should be displayed bold.
Declaration
public 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 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 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 bool? Shadow { get; set; }
Property Value
System.Nullable<System.Boolean>
|
Size
Gets or sets the size.
Declaration
public 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 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 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
|