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

GrapeCity.ActiveReports アセンブリ > GrapeCity.ActiveReports.SectionReportModel 名前空間 > Picture クラス : LineWeight プロパティ
線のペン幅を設定または参照します(1/144インチ単位)。デフォルトは1です。144を設定すると1インチになります。
シンタックス
'宣言
 
Public Property LineWeight As Single
public float LineWeight {get; set;}

プロパティ値

現在の線幅を表す浮動小数点値。

使用例
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 Detail1_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 メンバ