Spread for ASP.NET 10 Product Documentation
Copy Method (Border)
Example 


Border object to be copied
Copies the specified Border object properties to the current object.
Syntax
'Declaration
 
Public Overridable Sub Copy( _
   ByVal o As Object _
) 
'Usage
 
Dim instance As Border
Dim o As Object
 
instance.Copy(o)
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.
FarPoint.Web.Spread.Border border=new FarPoint.Web.Spread.Border(BorderStyle.Dotted,Color.Red,2);
FarPoint.Web.Spread.Border cloneborder=new FarPoint.Web.Spread.Border();
FarPoint.Web.Spread.Cell acell;
acell=FpSpread1.Cells[0,0];
cloneborder.Copy(border);
acell.Border=cloneborder;
Dim border As New FarPoint.Web.Spread.Border(BorderStyle.Dotted,Color.Red,2)
Dim cloneborder As New FarPoint.Web.Spread.Border()
Dim acell As FarPoint.Web.Spread.Cell
acell=FpSpread1.Cells(0,0)
cloneborder.Copy(border)
acell.Border=cloneborder
Requirements

Target Platforms: Windows 7, Windows 8, Windows 10, Windows Vista, Windows Server 2003, Windows Server 2008, Windows Server 2012, Windows XP Professional

See Also

Reference

Border Class
Border Members

 

 


Copyright © GrapeCity, inc. All rights reserved.