PowerTools ActiveReports for .NET 9.0J
Barcode クラス
メンバ  使用例 

Barcodeコントロールは、レポートにバーコードを印刷するために使用します。
オブジェクト モデル
Barcode クラス
構文
'宣言
 
Public NotInheritable Class Barcode 
   Inherits ARControl
public sealed class Barcode : ARControl 
解説

Barcodeコントロールは、データフィールドに連結できます。アンバウンドで使用することもできます。

使用例
private void detail_Format(object sender, System.EventArgs eArgs)
{
    this.barcode1.Alignment = System.Drawing.StringAlignment.Center;
    this.barcode1.AutoSize = true;
    this.barcode1.BackColor = System.Drawing.Color.White;
    this.barcode1.BarHeight = 0.0f;
    this.barcode1.CaptionPosition = BarCodeCaptionPosition.Below;
    this.barcode1.CheckSumEnabled = true;
    this.barcode1.ForeColor = System.Drawing.Color.Green;
    this.barcode1.Style = BarCodeStyle.Code49;
    this.barcode1.Text = "Barcode";
}
Private Sub Detail1_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail1.Format
    Me.Barcode1.Alignment = System.Drawing.StringAlignment.Center
    Me.Barcode1.AutoSize = True
    Me.Barcode1.BackColor = System.Drawing.Color.White
    Me.Barcode1.BarHeight = 0.0F
    Me.Barcode1.CaptionPosition = BarCodeCaptionPosition.Below
    Me.Barcode1.CheckSumEnabled = True
    Me.Barcode1.ForeColor = System.Drawing.Color.Green
    Me.Barcode1.Style = BarCodeStyle.Code49
    Me.Barcode1.Text = "Barcode"
End Sub
継承階層

System.Object
   GrapeCity.ActiveReports.SectionReportModel.ARControl
      GrapeCity.ActiveReports.SectionReportModel.Barcode

参照

関連項目

Barcode メンバ
GrapeCity.ActiveReports.SectionReportModel 名前空間

 

 


©2003-2015 GrapeCity inc. All rights reserved.