Spread for ASP.NET 9.0 Product Documentation
Clone Method (Border)
Example 


Creates a new border that is a copy of the current instance.
Syntax
'Declaration
 
Public Overridable Function Clone() As Object
'Usage
 
Dim instance As Border
Dim value As Object
 
value = instance.Clone()
public virtual object Clone()

Return Value

Object containing a copy of the object
Example
This example creates two Border objects and clones the first object's settings to the second's 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.Bordercloneborder=new FarPoint.Web.Spread.Border();
FarPoint.Web.Spread.Cell acell;
acell=FpSpread1.Cells[0,0];
cloneborder=border.Clone();
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=border.Clone()
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.