Sets the properties of the container.
#include "ltwrappr.h"
L_INT LImageViewer::SetProperties (pDispContainerProp, uFlags);
Pointer to a DISPCONTAINERPROPERTIES structure that contains the options for controlling the behavior of the container.
Reserved for future use. Pass 0.
Value | Meaning |
---|---|
SUCCESS | The function was successful. |
< 1 | An error occurred. To get extended error information, call GetLastError, and refer to Return Codes. |
This function automatically updates the container window, so the user does not have to redraw the window.
Before calling LImageViewer::SetProperties:
Declare a variable of type DISPCONTAINERPROPERTIES.
Set DISPCONTAINERPROPERTIES.uStructSize to sizeof(DISPCONTAINERPROPERTIES)
Set DISPCONTAINERPROPERTIES.uMask to indicate the properties to set (that is, which members of the structure contain valid information)
Specify the new property values in the appropriate members.
Pass a pointer to the DISPCONTAINERPROPERTIES structure to LimageViewer::SetProperties as the pDispContainerProp parameter.
To get the current properties set for a container, call LImageViewer::GetProperties.
For more information on the actual properties that can be set, refer to the DISPCONTAINERPROPERTIES structure.
If this function is not called before using the container, the following default container properties are used. For information on these default values, refer to DISPCONTAINERPROPERTIES structure.
For an example, refer to LImageViewer::Create.