GrapeCity.Xaml.SpreadSheet.Data Namespace > StyleInfo Class : IsWordWrapSet Method |
'Declaration Public Overridable Function IsWordWrapSet() As Boolean
public virtual bool IsWordWrapSet()
true
if the word wrap of the cell contents (WordWrap property) is set; otherwise, false
.GrapeCity.Xaml.SpreadSheet.Data.StyleInfo style = new GrapeCity.Xaml.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.Xaml.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()
Target Platforms: Windows Server 2012, Windows RT