Spread for ASP.NET 7.0 Product Documentation
IsDefined Method
See Also  Example Support Options
FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > Border Class : IsDefined Method


prop
Border setting from the BorderProperty class

Glossary Item Box

Gets whether a specified border property has been set.

Syntax

Visual Basic (Declaration) 
Public Overridable Function IsDefined( _
   ByVal prop As BorderProperty _
) As Boolean
Visual Basic (Usage)Copy Code
Dim instance As Border
Dim prop As BorderProperty
Dim value As Boolean
 
value = instance.IsDefined(prop)
C# 
public virtual bool IsDefined( 
   BorderProperty prop
)

Parameters

prop
Border setting from the BorderProperty class

Return Value

Boolean: true if a property has been set; false otherwise

Remarks

Use this method to check if any of the Border properties has been set for the border of an object. See the list of properties on the page of Border Class Members.

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.Border border=new FarPoint.Web.Spread.Border();
FarPoint.Web.Spread.Cell acell;
bool bl;
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 BasicCopy Code
Dim border As New FarPoint.Web.Spread.Border()
Dim acell As FarPoint.Web.Spread.Cell
Dim bl As Boolean
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 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

© 2002-2014 ComponentOne, a division of GrapeCity. All Rights Reserved.