'宣言 Public ReadOnly Property EncodingException As System.Exception
public System.Exception EncodingException {get;}
'宣言 Public ReadOnly Property EncodingException As System.Exception
public System.Exception EncodingException {get;}
C1QRCodeコントロールを使用して、 652桁の数字、395文字の英数字(大文字のみ)、または271バイトまでをエンコードできます。
これらの制限を超えた場合、またはいずれかのコントロールプロパティに 設定されている値によってTextプロパティのコンテンツをエンコードできなかった場合、 コントロールは空白のままになり、EncodingException プロパティには、コードを生成できなかった理由に関する詳細が含まれます。
c1QRCode1.Text = textBox1.Text; label1.Text = c1QRCode1.EncodingException == null ? string.Empty : c1QRCode1.EncodingException.Message;