FarPoint.Win.SpreadJ アセンブリ > FarPoint.Win.Spread 名前空間 > Row クラス : VerticalAlignment プロパティ |
'Declaration Public Property VerticalAlignment As CellVerticalAlignment
'使用法 Dim instance As Row Dim value As CellVerticalAlignment instance.VerticalAlignment = value value = instance.VerticalAlignment
public CellVerticalAlignment VerticalAlignment {get; set;}
FarPoint.Win.Spread.Row r;
r = fpSpread1.ActiveSheet.Rows[0];
r.HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Right;
r.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Bottom;
r.Height = 70;
fpSpread1.ActiveSheet.SetValue(0, 0, "Alignment");
Dim r As FarPoint.Win.Spread.Row r = FpSpread1.ActiveSheet.Rows(0) r.HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Right r.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Bottom r.Height = 70 FpSpread1.ActiveSheet.SetValue(0, 0, "Alignment")