Spread Silverlight Documentation
IsWordWrapSet Method
Example 


GrapeCity.Windows.SpreadSheet.Data Namespace > StyleInfo Class : IsWordWrapSet Method
Gets a value that indicates whether the word wrap of the cell contents (WordWrap property) is set.
Syntax
'Declaration
 
Public Overridable Function IsWordWrapSet() As System.Boolean
'Usage
 
Dim instance As StyleInfo
Dim value As System.Boolean
 
value = instance.IsWordWrapSet()
public virtual System.bool IsWordWrapSet()

Return Value

true if the word wrap of the cell contents (WordWrap property) is set; otherwise, false.
Example
This example uses the IsWordWrapSet method.
GrapeCity.Windows.SpreadSheet.Data.StyleInfo style = new GrapeCity.Windows.SpreadSheet.Data.StyleInfo();
style.WordWrap = true;
style.Name = "Style1";
GcSpreadSheet1.ActiveSheet.NamedStyles.Add(style);
GcSpreadSheet1.ActiveSheet.Cells[0, 0].StyleName = "Style1";
ListBox1.Items.Add(style.IsWordWrapSet.ToString());
//style.ResetWordWrap();
Dim style As New GrapeCity.Windows.SpreadSheet.Data.StyleInfo()
style.WordWrap = True
style.Name = "Style1"
GcSpreadSheet1.ActiveSheet.NamedStyles.Add(style)
GcSpreadSheet1.ActiveSheet.Cells(0, 0).StyleName = "Style1"
ListBox1.Items.Add(style.IsWordWrapSet.ToString())
'style.ResetWordWrap()
See Also

Reference

StyleInfo Class
StyleInfo Members