Spread for ASP.NET 8.0 Product Documentation
IsEmpty Method (BaseSheetStyleModel)
Example 


Determines whether the model has no style settings.
Syntax
'Declaration
 
Public Overridable Function IsEmpty() As Boolean
'Usage
 
Dim instance As BaseSheetStyleModel
Dim value As Boolean
 
value = instance.IsEmpty()
public virtual bool IsEmpty()

Return Value

true if the model has no data; false otherwise
Remarks
This implementation always returns true.
Example
This example returns whether the model has no style settings.
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())
Requirements

Target Platforms: Windows 7, Windows 8, Windows Vista, Windows Server 2000, Windows 2000 Professional, Windows XP Professional, Windows NT 4.0 Workstation, SP6, Windows NT 4.0 Server, SP6

See Also

Reference

BaseSheetStyleModel Class
BaseSheetStyleModel Members

 

 


Copyright © GrapeCity, inc. All rights reserved.