[]
Represents label display options for a barcode.
This interface is implemented by barcode objects that support human-readable labels. Use it to determine whether the label is displayed and where the label is positioned relative to the barcode.
public interface ILabelOption
Public Interface ILabelOption
worksheet.Range["A1"].Value = "123456";
worksheet.Range["B1"].Formula = "=BC_CODE39(A1)";
ILabelOption labelOption = (ILabelOption) worksheet.Range["B1"].Value;
bool showLabel = labelOption.ShowLabel;
string labelPosition = labelOption.LabelPosition;
| Name | Description |
|---|---|
| LabelPosition | Gets the position of the label text when the barcode displays a label.
Use this property together with ShowLabel to determine
how the human-readable label is displayed for a barcode. Common values
include |
| ShowLabel | 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 |