Return Value
Boolean: true if the property is set; false otherwise
Gets whether the Locked property is set.
FarPoint.Win.Spread.StyleInfo si = new FarPoint.Win.Spread.StyleInfo(); bool b; si.Locked = true; fpSpread1.ActiveSheet.DefaultStyle = si; b = si.IsLockedSet(); label1.Text = b.ToString();
Dim si As New FarPoint.Win.Spread.StyleInfo Dim b As Boolean si.Locked = True fpSpread1.ActiveSheet.DefaultStyle = si b = si.IsLockedSet() Label1.Text = b.ToString()