PowerTools ActiveReports for .NET 9.0J
ValueBinary プロパティ
使用例 

バーコードにバイナリデータを設定するために使用するプロパティです。このプロパティは、QRCodeバーコードについてのみ有効です。
構文
'宣言
 
Public Property ValueBinary As Byte()
public byte[] ValueBinary {get; set;}
使用例
Private Sub Detail_Format(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Detail.Format
    Dim bytesData As Byte()
    bytesData = System.Text.Encoding.GetEncoding(932).GetBytes("0123456789")
    Me.Barcode1.ValueBinary = bytesData
End Sub
private void Detail_Format(object sender, EventArgs e)
{
    Byte[] bytesData;
    bytesData = System.Text.Encoding.GetEncoding(932).GetBytes("0123456789");
    this.Barcode1.ValueBinary = bytesData;
}
参照

関連項目

Barcode クラス
Barcode メンバ

 

 


©2003-2015 GrapeCity inc. All rights reserved.