Spread Silverlight Documentation
ActualFontStyle Property (Cell)
Example 


GrapeCity.Windows.SpreadSheet.Data Namespace > Cell Class : ActualFontStyle Property
Gets or sets the displayed cell font style.
Syntax
'Declaration
 
Public ReadOnly Property ActualFontStyle As System.Windows.FontStyle
'Usage
 
Dim instance As Cell
Dim value As System.Windows.FontStyle
 
value = instance.ActualFontStyle
public System.Windows.FontStyle ActualFontStyle {get;}

Property Value

The font style of the font.
Example
This example gets the ActualFontStyle property.
TextBox1.Text = GcSpreadSheet1.Sheets[0].Cells[0, 0].ActualFontFamily.ToString();
TextBox2.Text = GcSpreadSheet1.Sheets[0].Cells[0, 0].ActualFontSize.ToString();
TextBox3.Text = GcSpreadSheet1.Sheets[0].Cells[0, 0].ActualFontStretch.ToString();
TextBox4.Text = GcSpreadSheet1.Sheets[0].Cells[0, 0].ActualFontStyle.ToString();
TextBox5.Text = GcSpreadSheet1.Sheets[0].Cells[0, 0].ActualFontWeight.ToString();
TextBox1.Text = GcSpreadSheet1.Sheets(0).Cells(0, 0).ActualFontFamily.ToString()
TextBox2.Text = GcSpreadSheet1.Sheets(0).Cells(0, 0).ActualFontSize.ToString()
TextBox3.Text = GcSpreadSheet1.Sheets(0).Cells(0, 0).ActualFontStretch.ToString()
TextBox4.Text = GcSpreadSheet1.Sheets(0).Cells(0, 0).ActualFontStyle.ToString()
TextBox5.Text = GcSpreadSheet1.Sheets(0).Cells(0, 0).ActualFontWeight.ToString()
See Also

Reference

Cell Class
Cell Members