内部にバーコード値(02410103775など)を含む文字列を解析します。
次のように、動的にラベルを作成します。
private void PrintBarcodeGettingInTouchWithItsInnerZebra(string lineToParse)
{
string barcodeText = GetBarcodeVal(lineToParse);
int barcodeHeight = Convert.ToInt32(GetBarcodeHeight(lineToParse));
int barcodeVertStartPos = GetBarcodeNextVerticalStartingPoint(lineToParse);
Label lblBarcode = new Label();
lblBarcode.Text = barcodeText;
lblBarcode.Font = new Font(lblBarcode.Font.Name, barcodeHeight, lblBarcode.Font.Style);
lblBarcode.Top = barcodeVertStartPos;
lblBarcode.Left = GetBarcodeNextHorizontalStartingPoint(lineToParse);
//lblBarcode.Parent = panel2by1LabelProxy; // <-- Is this preferred, or the line below?
panel2by1LabelProxy.Controls.Add(lblBarcode);
}
現在、バーコード値「raw」(「02410103775」など)が表示されています。ラベルテキストをバーコード表現にモーフィングする方法はありますか?私はそれが正しいフォントを知っているのと同じくらい簡単であることを望んでいます。使用する名前...