Interface IFontPropertiesEditor
Provides methods for getting and setting font properties.
Namespace: Telerik.Windows.Controls.Spreadsheet.Dialogs
Assembly: Telerik.Windows.Controls.Spreadsheet.dll
Syntax
public interface IFontPropertiesEditor
Methods
ApplyFontFamily(ThemableFontFamily)
Applies the font family.
Declaration
void ApplyFontFamily(ThemableFontFamily fontFamily)
Parameters
Telerik.Windows.Documents.Spreadsheet.Model.ThemableFontFamily
fontFamily
The font family. |
ApplyFontSize(Double)
Applies the size of the font.
Declaration
void ApplyFontSize(double fontSize)
Parameters
System.Double
fontSize
Size of the font. |
ApplyForeColor(ThemableColor)
Applies the foreground color.
Declaration
void ApplyForeColor(ThemableColor foreColor)
Parameters
Telerik.Windows.Documents.Spreadsheet.Model.ThemableColor
foreColor
The foreground color. |
ApplyIsBold(Boolean)
Applies the bold state.
Declaration
void ApplyIsBold(bool isBold)
Parameters
System.Boolean
isBold
The bold state. |
ApplyIsItalic(Boolean)
Applies the italic state.
Declaration
void ApplyIsItalic(bool isItalic)
Parameters
System.Boolean
isItalic
The italic state. |
ApplyUnderlineType(UnderlineType)
Applies the type of the underline.
Declaration
void ApplyUnderlineType(UnderlineType underlineType)
Parameters
Telerik.Windows.Documents.Spreadsheet.Model.UnderlineType
underlineType
Type of the underline. |
TryGetFontFamily(out ThemableFontFamily)
Tries to get the font family.
Declaration
bool TryGetFontFamily(out ThemableFontFamily fontFamily)
Parameters
Telerik.Windows.Documents.Spreadsheet.Model.ThemableFontFamily
fontFamily
The font family. |
Returns
System.Boolean
If the operation is successful. |
TryGetFontSize(out Double)
Tries to get the font size.
Declaration
bool TryGetFontSize(out double fontSize)
Parameters
System.Double
fontSize
The font size. |
Returns
System.Boolean
If the operation is successful. |
TryGetForeColor(out ThemableColor)
Tries to get the foreground color.
Declaration
bool TryGetForeColor(out ThemableColor foreColor)
Parameters
Telerik.Windows.Documents.Spreadsheet.Model.ThemableColor
foreColor
The foreground color. |
Returns
System.Boolean
If the operation is successful. |
TryGetIsBold(out Boolean)
Tries to get the bold state.
Declaration
bool TryGetIsBold(out bool isBold)
Parameters
System.Boolean
isBold
The bold state. |
Returns
System.Boolean
If the operation is successful. |
TryGetIsItalic(out Boolean)
Tries to get the italic state.
Declaration
bool TryGetIsItalic(out bool isItalic)
Parameters
System.Boolean
isItalic
The italic state. |
Returns
System.Boolean
If the operation is successful. |
TryGetUnderlineType(out UnderlineType)
Tries to get the underline type.
Declaration
bool TryGetUnderlineType(out UnderlineType underlineType)
Parameters
Telerik.Windows.Documents.Spreadsheet.Model.UnderlineType
underlineType
The underline type. |
Returns
System.Boolean
If the operation is successful. |