Magazine |
| | Community |
| | Workshop |
| | Tools & Samples |
| | Training |
| | Site Info |
|
|
||||||||
|
Retrieves the value of the display property for the object.
Syntax
HRESULT get_display( BSTR *p );
Parameters
- p
- Address of a variable that receives the value of the property. The variable receives "none" if the object is not being rendered, or NULL if it is. See display for details.
Return Value
Returns S_OK if successful, or an error value otherwise.
See Also
put_display
Sets the value of the cascading style sheet (CSS) display property for the object. The property determines whether the object is rendered.
Syntax
HRESULT put_display( BSTR v );
Parameters
- v
- String specifying whether to render the object. If this parameter is "none", the object is not rendered; if NULL, it is rendered. See display for details.
Return Value
Returns S_OK if successful, or an error value otherwise.
Remarks
Although you can apply the display property to parts of a table (such as a TR or TD object), changing the property has no effect on those parts. However, you can dynamically control the rendering of the entire table by applying the property to the TABLE object.
See Also
get_display
Does this content meet your programming needs? Write us!
© 1998 Microsoft Corporation. All rights reserved. Terms of use.