Search
Box.SetTextPadding Method
See Also
 



Sets padding space between the box boundaries and text.

 Syntax

VB6  Copy Code

Public Sub SetTextPadding( _
    ByVal left As Long, _
    ByVal top As Long, _
    ByVal right As Long, _
    ByVal bottom As Long _
)

C++  Copy Code

public:
void SetTextPadding (
    int left,
    int top,
    int right,
    int bottom
)

 Parameters

left

An integer value specifying the left padding size.

top

An integer value specifying the top padding size.

right

An integer value specifying the right padding size.

bottom

An integer value specifying the bottom padding size.

 See Also