See Also

Picture Class  | Picture Members  | LineStyle  | LineWeight

Language

Visual Basic

C#

Show All

See Also Languages ActiveReports Send feedback to Data Dynamics

LineColor Property

Gets or sets the border line color around the picture control.

[Visual Basic]
Public Property LineColor As Color
[C#]
public Color LineColor {get; set;}

Return Type

A System.Drawing.Color value that represents the color used to paint the picture border. Default value is Color.Transparent.

Example

[C#] 

private void Detail_Format(object sender, System.EventArgs eArgs) 

    this.Picture1.LineColor = System.Drawing.Color.Navy; 
    this.Picture1.LineStyle = LineStyle.Solid; 
    this.Picture1.LineWeight = 2.0f; 
}

[Visual Basic] 

Private Sub Detail_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail.Format
   Me.Picture1.LineColor = System.Drawing.Color.Navy
   Me.Picture1.LineStyle = LineStyle.Solid
   Me.Picture1.LineWeight = 2.0F
End Sub

See Also

Picture Class  | Picture Members  | LineStyle  | LineWeight

 

 


Copyright © 2004-2005 Data Dynamics, Ltd. All rights reserved.