FarPoint.Web.Spread Assembly > FarPoint.Web.Spread.Model Namespace > BaseSheetStyleModel Class : IsEmpty Method |
'Declaration Public Overridable Function IsEmpty() As Boolean
'Usage Dim instance As BaseSheetStyleModel Dim value As Boolean value = instance.IsEmpty()
public virtual bool IsEmpty()
FarPoint.Web.Spread.Model.BaseSheetStyleModel bs; FarPoint.Web.Spread.StyleInfo si = new FarPoint.Web.Spread.StyleInfo(); si.BackColor = Color.Yellow; bs = (FarPoint.Web.Spread.Model.BaseSheetStyleModel)FpSpread1.ActiveSheetView.StyleModel; bs.SetDirectInfo(0, 0, si); bool b; b = bs.IsEmpty(); Response.Write(b.ToString());
Dim bs As FarPoint.Web.Spread.Model.BaseSheetStyleModel Dim si As New FarPoint.Web.Spread.StyleInfo si.BackColor = Color.Yellow bs = FpSpread1.ActiveSheetView.StyleModel bs.SetDirectInfo(0, 0, si) Dim b As Boolean b = bs.IsEmpty() Response.Write(b.ToString())
Target Platforms: Windows 7, Windows 8, Windows 10, Windows Vista, Windows Server 2003, Windows Server 2008, Windows Server 2012, Windows XP Professional