GrapeCity ActiveReports for .NET 14.0J
LineColor プロパティ (Picture)
使用例 

GrapeCity.ActiveReports アセンブリ > GrapeCity.ActiveReports.SectionReportModel 名前空間 > Picture クラス : LineColor プロパティ
Pictureコントロールの周囲の境界線色を取得または設定します。
シンタックス
'宣言
 
Public Property LineColor As Color
public Color LineColor {get; set;}

プロパティ値

画像の境界線に使用する色を表すSystem.Drawing.Color値。デフォルト値はColor.Transparentです。

使用例
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;
}
Private Sub Detai1_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail1.Format
   Me.Picture1.LineColor = System.Drawing.Color.Navy
   Me.Picture1.LineStyle = LineStyle.Solid
   Me.Picture1.LineWeight = 2.0F
End Sub
参照

Picture クラス
Picture メンバ
LineStyle プロパティ
LineWeight プロパティ