'Declaration Public Overrides Function IsVerticalAlignmentSet() As Boolean
public override bool IsVerticalAlignmentSet()
Return Value
Boolean: true if the property is set; false otherwise
'Declaration Public Overrides Function IsVerticalAlignmentSet() As Boolean
public override bool IsVerticalAlignmentSet()
Gets whether the VerticalAlignment property is set.
FarPoint.Win.Spread.StyleInfo si = new FarPoint.Win.Spread.StyleInfo(); bool b; si.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Bottom; fpSpread1.ActiveSheet.DefaultStyle = si; b = si.IsVerticalAlignmentSet(); label1.Text = b.ToString();
Dim si As New FarPoint.Win.Spread.StyleInfo Dim b As Boolean si.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Bottom fpSpread1.ActiveSheet.DefaultStyle = si b = si.IsVerticalAlignmentSet() Label1.Text = b.ToString()