GrapeCity ActiveReports for .NET 14.0J
Code49 プロパティ
使用例 

GrapeCity.ActiveReports アセンブリ > GrapeCity.ActiveReports.SectionReportModel 名前空間 > Barcode クラス : Code49 プロパティ
バーコードコントロールのためにCode49Optionsを取得または設定します。
シンタックス
'宣言
 
Public Property Code49 As GrapeCity.ActiveReports.BarCodes.Code49Options
public GrapeCity.ActiveReports.BarCodes.Code49Options Code49 {get; set;}
解説

コード49は、それぞれ8文字の2?8行を含む高密度スタックシンボルです。 各行には開始コードと停止コードがあります。

Code49Optionsには、GroupingとGroupが存在します。GroupingがTrueに設定されている場合には、Groupプロパティは0から8の間の数に設定されます。デフォルト値は、それぞれFalse、0です。

使用例
private void detail_Format(object sender, System.EventArgs eArgs)
{
    this.barcode1.Code49.Grouping = true;
    this.barcode1.Code49.Group = 4;
}
Private Sub Detail1_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail1.Format
    Me.Barcode1.Code49.Grouping = True
    Me.Barcode1.Code49.Group = 4
End Sub
参照

Barcode クラス
Barcode メンバ
Code49Options クラス