Spread Silverlight Documentation
Underline Property (StyleInfo)
Example 


GrapeCity.Windows.SpreadSheet.Data Namespace > StyleInfo Class : Underline Property
Gets or sets a value that indicates whether Underline is set.
Syntax
'Declaration
 
<System.ComponentModel.DefaultValueAttribute()>
Public Overridable Property Underline As System.Boolean
'Usage
 
Dim instance As StyleInfo
Dim value As System.Boolean
 
instance.Underline = value
 
value = instance.Underline
[System.ComponentModel.DefaultValue()]
public virtual System.bool Underline {get; set;}

Property Value

false if not set.
Example
This example uses the Underline property.
GrapeCity.Windows.SpreadSheet.Data.StyleInfo style = new GrapeCity.Windows.SpreadSheet.Data.StyleInfo("TextStyle");
style.Underline = true;
style.Strikethrough = false;
gcSpreadSheet1.Sheets[0].NamedStyles.Add(style);
gcSpreadSheet1.Sheets[0].Cells[0, 0].StyleName = "TextStyle";
gcSpreadSheet1.Sheets[0].Cells[0, 0].Text = "Style";
listBox1.Items.Add(style.IsStrikethroughSet().ToString());
listBox1.Items.Add(style.IsUnderlineSet().ToString());
//style.ResetStrikethrough();
//style.ResetUnderline();
Dim style As New GrapeCity.Windows.SpreadSheet.Data.StyleInfo("TextStyle")
style.Underline = True
style.Strikethrough = False
GcSpreadSheet1.Sheets(0).NamedStyles.Add(style)
GcSpreadSheet1.Sheets(0).Cells(0, 0).StyleName = "TextStyle"
GcSpreadSheet1.Sheets(0).Cells(0, 0).Text = "Style"
listBox1.Items.Add(style.IsStrikethroughSet().ToString())
listBox1.Items.Add(style.IsUnderlineSet().ToString())
'style.ResetStrikethrough()
'style.ResetUnderline()
See Also

Reference

StyleInfo Class
StyleInfo Members