Contents Index Topic Contents | ||
Previous Topic: IHTMLFormElement::put_dir Next Topic: IHTMLFormElement::put_encoding |
IHTMLFormElement::get_dir
HRESULT get_dir( BSTR *p );Retrieves the direction value for the form. The direction represents the direction of the text on the form.
- Returns S_OK if successful, or an error value otherwise.
- p
- Address of a string variable that receives one of the following strings:
"leftToRight" The direction is from left to right. "rightToLeft" The direction is from right to left. See also put_dir
IHTMLFormElement::put_dir
HRESULT put_dir( BSTR v );Sets the form's direction property. The direction represents the direction of the text on the form.
- Returns S_OK if successful, or an error value otherwise.
- v
- String variable that contains one of the following strings:
"leftToRight" The direction is from left to right. "rightToLeft" The direction is from right to left. See also get_dir
Top of Page
© 1997 Microsoft Corporation. All rights reserved. Terms of Use.