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