GrapeCity.Windows.SpreadSheet.Data Namespace : CellHorizontalAlignment Enumeration |
'Declaration Public Enum CellHorizontalAlignment Inherits System.Enum
'Usage Dim instance As CellHorizontalAlignment
public enum CellHorizontalAlignment : System.Enum
Member | Description |
---|---|
Center | Indicates that the cell content starts from the center in the horizontal alignment. |
General | Indicates that the horizontal alignment is based on the value type. |
Left | Indicates that the cell content starts from the left in the horizontal alignment. |
Right | Indicates that the cell content starts from the right in the horizontal alignment. |
GrapeCity.Windows.SpreadSheet.Data.StyleInfo aaa = new GrapeCity.Windows.SpreadSheet.Data.StyleInfo(); aaa.Background = New SolidColorBrush(Colors.Aquamarine); aaa.Parent = "ParentStyle"; aaa.Name = "aaa"; GrapeCity.Windows.SpreadSheet.Data.StyleInfo ParentStyle = new GrapeCity.Windows.SpreadSheet.Data.StyleInfo(); ParentStyle.Background = new SolidColorBrush(Colors.Aquamarine); ParentStyle.HorizontalAlignment = GrapeCity.Windows.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"; GcSpreadSheet1.Invalidate();
Dim aaa As New GrapeCity.Windows.SpreadSheet.Data.StyleInfo() aaa.Background = New SolidColorBrush(Colors.Aquamarine) aaa.Parent = "ParentStyle" aaa.Name = "aaa" Dim ParentStyle As New GrapeCity.Windows.SpreadSheet.Data.StyleInfo() ParentStyle.Background = New SolidColorBrush(Colors.Aquamarine) ParentStyle.HorizontalAlignment = GrapeCity.Windows.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" GcSpreadSheet1.Invalidate()
System.Object
System.ValueType
System.Enum
GrapeCity.Windows.SpreadSheet.Data.CellHorizontalAlignment
Target Platforms: Windows 7, Windows 8 Desktop, Windows Vista SP1 or later, Windows Server 2000, Windows 2000 Professional, Windows XP Professional, Windows NT 4.0 Workstation, SP6, Windows NT 4.0 Server, SP6