[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.ILabelOption.LabelPosition

LabelPosition Property

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 "top" and "bottom".

Declaration
string LabelPosition { get; }
ReadOnly Property LabelPosition As String
Examples
worksheet.Range["A1"].Value = "123456";
worksheet.Range["B1"].Formula = "=BC_CODE39(A1,,,TRUE,\"bottom\")";
ILabelOption labelOption = (ILabelOption) worksheet.Range["B1"].Value;
string labelPosition = labelOption.LabelPosition;