Bottom Property (Automation Only)
Bottom Property (Automation Only) |
Gets or sets the bottom position of the InkRectangle object.
Declaration
[C++]
[propput] HRESULT put_Bottom ([in] long Units);
[propget] HRESULT get_Bottom ([out, retval] long* Units);
[Microsoft® Visual Basic® 6.0]
Public Property Get Bottom() As Long
Public Property Let Bottom(ByVal theUnits As Long)
Property Value
long The bottom position of the InkRectangle object.
This property is read/write.
Return Value
HRESULT value | Description |
---|---|
S_OK | Success. |
E_POINTER | The parameter pointer was invalid. |
E_INK_EXCEPTION | An exception occurred inside the method. |
Remarks
The default value of this property is 0.
Example
[Visual Basic 6.0]
This Visual Basic 6.0 example sets the Bottom property of an InkRectangle object to 10.
Dim theInkRectangle As New InkRectangle
theInkRectangle.Bottom = 10