Spread Windows Forms 12.0 Product Documentation
VerticalAlignment Property (GroupInfo)
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > GroupInfo Class : VerticalAlignment Property
Gets or sets the vertical alignment of the grouping information.
Syntax
'Declaration
 
Public Property VerticalAlignment As CellVerticalAlignment
'Usage
 
Dim instance As GroupInfo
Dim value As CellVerticalAlignment
 
instance.VerticalAlignment = value
 
value = instance.VerticalAlignment
public CellVerticalAlignment VerticalAlignment {get; set;}

Property Value

CellHorizontalAlignment setting that specifies the vertical alignment of contents in the cell
Example
fpSpread1.BorderCollapse = FarPoint.Win.Spread.BorderCollapse.Separate;
fpSpread1.AllowColumnMove = true;
fpSpread1.ActiveSheet.GroupBarInfo.Visible = true;
fpSpread1.ActiveSheet.AllowGroup = true;

FarPoint.Win.Spread.GroupInfo gi = new FarPoint.Win.Spread.GroupInfo();

gi.HorizontalAlignment = CellHorizontalAlignment.Left;
gi.VerticalAlignment = CellVerticalAlignment.Top;

fpSpread1.ActiveSheet.GroupInfos.Add(gi);
FpSpread1.BorderCollapse = FarPoint.Win.Spread.BorderCollapse.Separate
FpSpread1.AllowColumnMove = True
FpSpread1.ActiveSheet.GroupBarInfo.Visible = True
FpSpread1.ActiveSheet.AllowGroup = True

Dim gi As New FarPoint.Win.Spread.GroupInfo
gi.HorizontalAlignment = CellHorizontalAlignment.Left
gi.VerticalAlignment = CellVerticalAlignment.Top

FpSpread1.ActiveSheet.GroupInfos.Add(gi)
See Also

Reference

GroupInfo Class
GroupInfo Members