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
Example
C# | Copy Code |
---|
bool b;
b = FpSpread1.ActiveSheetViewCells[0, 0].Border.IsEmpty();
Response.Write(b.ToString());
|
Visual Basic | Copy Code |
---|
Dim b As Boolean
b = FpSpread1.ActiveSheetView.Cells(0, 0).Border.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