FarPoint.Win.SpreadJ アセンブリ > FarPoint.Win.Spread 名前空間 > GroupInfo クラス : VerticalAlignment プロパティ |
'Declaration Public Property VerticalAlignment As CellVerticalAlignment
'使用法 Dim instance As GroupInfo Dim value As CellVerticalAlignment instance.VerticalAlignment = value value = instance.VerticalAlignment
public CellVerticalAlignment VerticalAlignment {get; set;}
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)