Spread ASP.NET 6.0 Product Documentation
IsEmpty Property
See Also  Example Send Feedback
FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > Border Class : IsEmpty Property


Glossary Item Box

Gets whether none of the properties for the border are set.

Syntax

Visual Basic (Declaration) 
Public Overridable ReadOnly Property IsEmpty As Boolean
Visual Basic (Usage)Copy Code
Dim instance As Border
Dim value As Boolean
 
value = instance.IsEmpty
C# 
public virtual bool IsEmpty {get;}

Property Value

Boolean: true if no border properties are set; false otherwise

Remarks

This property is available at run time only.

Example

C#Copy Code
bool b;
b = FpSpread1.ActiveSheetViewCells[0, 0].Border.IsEmpty();
Response.Write(b.ToString()); 
Visual BasicCopy Code
Dim b As Boolean
b = FpSpread1.ActiveSheetView.Cells(0, 0).Border.IsEmpty
Response.Write(b.ToString()) 

Requirements

Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family

See Also

© 2002-2012 GrapeCity, Inc. All Rights Reserved.