Creates a set of margins (insets) with the top and left margin (inset) specified.
Syntax
'Declaration
Public Function New( _
ByVal As Integer, _
ByVal As Integer _
)
'Usage
Dim xInset As Integer
Dim yInset As Integer
Dim instance As New Inset(xInset, yInset)
public Inset(
int ,
int
)
Parameters
- xInset
- Number of pixels to inset from the left (along the x-axis)
- yInset
- Number of pixels to inset from the top (along the y-axis)
See Also