'宣言 Public Property Text As System.String
'使用法 Dim instance As RenderBarCode Dim value As System.String instance.Text = value value = instance.Text
public System.string Text {get; set;}
            '宣言 Public Property Text As System.String
'使用法 Dim instance As RenderBarCode Dim value As System.String instance.Text = value value = instance.Text
public System.string Text {get; set;}
            一部のエンコーディングは任意の長さの英数字値をサポートします。その他のエンコーディングは数値または特定の文字セットに限定されます。詳細については、 BarCodeType列挙型を参照してください。
現在のエンコーディングに対して無効な文字を使用すると、オブジェクトには空白の画像が表示されます。
RenderBarCode rbc = new RenderBarCode(); rbc.BarCodeType = BarCodeType.Code39; rbc.Text = "123456"; doc.Body.Children.Add(rbc);