GrapeCity.Xaml.SpreadSheet.Data Namespace > StyleInfo Class : Parent Property |
'Declaration <DefaultValueAttribute()> Public Overridable Property Parent As String
'Usage Dim instance As StyleInfo Dim value As String instance.Parent = value value = instance.Parent
[DefaultValue()] public virtual string Parent {get; set;}
GrapeCity.Xaml.SpreadSheet.Data.StyleInfo aaa = new GrapeCity.Xaml.SpreadSheet.Data.StyleInfo(); aaa.Background = New SolidColorBrush(Windows.UI.Colors.Aquamarine); aaa.Parent = "ParentStyle"; aaa.Name = "aaa"; GrapeCity.Xaml.SpreadSheet.Data.StyleInfo ParentStyle = new GrapeCity.Xaml.SpreadSheet.Data.StyleInfo(); ParentStyle.Background = new SolidColorBrush(Windows.UI.Colors.Aquamarine); ParentStyle.HorizontalAlignment = GrapeCity.Xaml.SpreadSheet.Data.CellHorizontalAlignment.Right; ParentStyle.Name = "ParentStyle"; gcSpreadSheet1.Sheets[0].NamedStyles.Add(aaa); gcSpreadSheet1.Sheets[0].NamedStyles.Add(ParentStyle); gcSpreadSheet1.Sheets[0].Cells[0, 0].StyleName = "aaa";
Dim aaa As New GrapeCity.Xaml.SpreadSheet.Data.StyleInfo() aaa.Background = New SolidColorBrush(Windows.UI.Colors.Aquamarine) aaa.Parent = "ParentStyle" aaa.Name = "aaa" Dim ParentStyle As New GrapeCity.Xaml.SpreadSheet.Data.StyleInfo() ParentStyle.Background = New SolidColorBrush(Windows.UI.Colors.Aquamarine) ParentStyle.HorizontalAlignment = GrapeCity.Xaml.SpreadSheet.Data.CellHorizontalAlignment.Right ParentStyle.Name = "ParentStyle" GcSpreadSheet1.Sheets(0).NamedStyles.Add(aaa) GcSpreadSheet1.Sheets(0).NamedStyles.Add(ParentStyle) GcSpreadSheet1.Sheets(0).Cells(0, 0).StyleName = "aaa"
Target Platforms: Windows Server 2012, Windows RT