[]
Gets whether the barcode displays its human-readable label text.
Use this property to determine whether the barcode renders label text.
When this property returns true, the label position is defined by
LabelPosition.
bool ShowLabel { get; }
ReadOnly Property ShowLabel As Boolean
worksheet.Range["A1"].Value = "123456";
worksheet.Range["B1"].Formula = "=BC_CODE39(A1,,,TRUE,\"bottom\")";
ILabelOption labelOption = (ILabelOption) worksheet.Range["B1"].Value;
bool showLabel = labelOption.ShowLabel;