FarPoint.Win.SpreadJ アセンブリ > FarPoint.Win.Spread 名前空間 > StyleInfo クラス : VerticalAlignment プロパティ |
'Declaration Public Overridable Property VerticalAlignment As CellVerticalAlignment
'使用法 Dim instance As StyleInfo Dim value As CellVerticalAlignment instance.VerticalAlignment = value value = instance.VerticalAlignment
public virtual CellVerticalAlignment VerticalAlignment {get; set;}
FarPoint.Win.Spread.StyleInfo si = new FarPoint.Win.Spread.StyleInfo(); DialogResult dlg; si.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Bottom; fpSpread1.ActiveSheet.DefaultStyle = si; dlg = MessageBox.Show("Reset the alignment?"); if (dlg == DialogResult.OK) { si.ResetVerticalAlignment(); fpSpread1.ActiveSheet.DefaultStyle = si; }
Dim si As New FarPoint.Win.Spread.StyleInfo Dim dlg As DialogResult si.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Bottom FpSpread1.ActiveSheet.DefaultStyle = si dlg = MessageBox.Show("Reset the alignment?") If dlg = DialogResult.OK Then si.ResetVerticalAlignment() FpSpread1.ActiveSheet.DefaultStyle = si End If