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


Glossary Item Box

Creates a new border that is a copy of the current instance.

Syntax

Visual Basic (Declaration) 
Public Overridable Function Clone() As Object
Visual Basic (Usage)Copy Code
Dim instance As Border
Dim value As Object
 
value = instance.Clone()
C# 
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.
C#Copy Code
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=border.Clone();
acell.Border=cloneborder;
Visual BasicCopy Code
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 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.