ImageGear v26.5 - Updated
ImageGear.Formats.Pdf Assembly / ImageGear.Formats.PDF.Forms Namespace / Form Class / Justification Property




In This Topic
    Justification Property (Form)
    In This Topic
    Gets or sets a value indicating the global justification of TextFields, ListBoxes, ComboBoxes, and PushButton. Other fields will not be affected.
    Syntax
    'Declaration
     
    Public Property Justification As TextJustification
    'Usage
     
    Dim instance As Form
    Dim value As TextJustification
     
    instance.Justification = value
     
    value = instance.Justification
    public TextJustification Justification {get; set;}
    public: __property TextJustification get_Justification();
    public: __property void set_Justification( 
       TextJustification value
    );
    public:
    property TextJustification Justification {
       TextJustification get();
       void set (    TextJustification value);
    }

    Property Value

    The justification for the text in text fields. Left, right, or centered.
    Remarks
    This property can be overridden on a per-field basis with Field.Justification
    See Also