ActiveReports 14 .NET Edition
GrapeCity.ActiveReports Assembly / GrapeCity.ActiveReports.SectionReportModel Namespace / Barcode Class / CaptionPosition Property
Example

In This Topic
    CaptionPosition Property
    In This Topic
    Gets or sets the caption's vertical position relative to the barcode symbol.
    Syntax
    'Declaration
     
    Public Property CaptionPosition As BarCodeCaptionPosition
    public BarCodeCaptionPosition CaptionPosition {get; set;}

    Property Value

    Current position of the caption.  Default is BarCodeCaptionPosition.None.
    Example
    private void detail_Format(object sender, System.EventArgs eArgs)
    {
        this.barcode1.CaptionPosition = BarCodeCaptionPosition.Below;
    }
    Private Sub Detail1_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail1.Format
        Me.Barcode1.CaptionPosition = BarCodeCaptionPosition.Below
    End Sub
    See Also