Gets whether a specified border property has been set.
            
            
            
Syntax
            Parameters
- prop
 
- Border setting from the BorderProperty class
 
            
            Return Value
Boolean: 
true if a property has been set; 
false otherwise
 
            
						
            
            Remarks
            
            
Example
This example creates a Border object, sets several of its properties then queries whether the BorderColorBottom property has been defined and returns the result to a text box.
             
| C# |  Copy Code | 
|---|
FarPoint.Web.Spread.Borderborder=newFarPoint.Web.Spread.Border();
FarPoint.Web.Spread.Cellacell;
boolbl;
acell=FpSpread1.Cells[0,0];
border.BorderColorBottom=Color.Red;
border.BorderColorRight=Color.Green;
border.BorderSize=2;
bl=border.IsDefined(FarPoint.Web.Spread.BorderProperty.BorderColorBottom);
acell.Border=border;
TextBox1.Text=Convert.ToString(bl);  | 
 
| Visual Basic |  Copy Code | 
|---|
DimborderAsNewFarPoint.Web.Spread.Border()
DimacellAsFarPoint.Web.Spread.Cell
DimblAsBoolean
acell=FpSpread1.Cells(0,0)
border.BorderColorBottom=Color.Red
border.BorderColorRight=Color.Green
border.BorderSize=2
bl=border.IsDefined(FarPoint.Web.Spread.BorderProperty.BorderColorBottom)
acell.Border=border
TextBox1.Text=bl  | 
 
 
            
            
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