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