[]
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".
string LabelPosition { get; }
ReadOnly Property LabelPosition As String
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;