Creates a new object that is a copy of the current instance of the Border class.
[Visual Basic]
Public Function Clone() As Border
Example
[Visual Basic]
Private Sub Detail_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail.Format
Dim b As New DataDynamics.ActiveReports.Border
Me.TextBox1.Border.BottomStyle = BorderLineStyle.DashDot
Me.TextBox1.Border.TopStyle = BorderLineStyle.DashDot
b = Me.TextBox1.Border.Clone()
Me.TextBox2.Border.BottomStyle = b.BottomStyle
Me.TextBox2.Border.TopStyle = b.TopStyle
End Sub
|
[C#]
private void Detail_Format(object sender, System.EventArgs eArgs) { DataDynamics.ActiveReports.Border b = new DataDynamics.ActiveReports.Border(); this.TextBox1.Border.BottomStyle = BorderLineStyle.ThickDash; this.TextBox1.Border.TopStyle = BorderLineStyle.ThickDash; b = this.TextBox1.Border.Clone(); this.TextBox2.Border.BottomStyle = b.BottomStyle; this.TextBox2.Border.TopStyle = b.TopStyle; } |
See Also
Border Class
| Border Members
Copyright © 2004-2005 Data Dynamics, Ltd. All rights reserved.