Copies the specified Border object properties to the current object.
Syntax
Visual Basic (Declaration) | |
---|
Public Overridable Sub Copy( _
ByVal o As Object _
) |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As Border
Dim o As Object
instance.Copy(o) |
C# | |
---|
public virtual void Copy(
object o
) |
Parameters
- o
- Border object to be copied
Example
This example creates two Border objects and copies the settings of the first object to that of the second and applies those settings to an instance of a Cell object.
C# | Copy Code |
---|
FarPoint.Web.Spread.Borderborder=NewFarPoint.Web.Spread.Border(BorderStyle.Dotted,Color.Red,2);
FarPoint.Web.Spread.Bordercloneborder=NewFarPoint.Web.Spread.Border();
FarPoint.Web.Spread.Cellacell;
acell=FpSpread1.Cells[0,0];
cloneborder.Copy(border);
acell.Border=cloneborder; |
Visual Basic | Copy Code |
---|
DimborderAsNewFarPoint.Web.Spread.Border(BorderStyle.Dotted,Color.Red,2)
DimcloneborderAsNewFarPoint.Web.Spread.Border()
DimacellAsFarPoint.Web.Spread.Cell
acell=FpSpread1.Cells(0,0)
cloneborder.Copy(border)
acell.Border=cloneborder |
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