[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.ILabelOption.ShowLabel

ShowLabel Property

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 true, the label position is defined by LabelPosition.

Declaration
bool ShowLabel { get; }
ReadOnly Property ShowLabel As Boolean
Examples
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;