GrapeCity ActiveReports for .NET 16.0J
ValueBinary プロパティ
使用例 

GrapeCity.ActiveReports.SectionReportModel 名前空間 > Barcode クラス : ValueBinary プロパティ
バイナリデータをバーコードに渡すための特別なプロパティです。主にQRコードバーコード用に存在します。
シンタックス
'宣言
 
Public Property ValueBinary As Byte()
public byte[] ValueBinary {get; set;}
使用例
private void Detail_Format(object sender, EventArgs e)
{
    Byte[] bytesData;
    bytesData = System.Text.Encoding.GetEncoding(932).GetBytes("0123456789");
    this.Barcode1.ValueBinary = bytesData;
}
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
参照

Barcode クラス
Barcode メンバ