OLEUIVIEWPROPSA structure (oledlg.h)
Contains information that is used to initialize the View tab of the Object properties dialog box. A reference to it is passed in as part of the OLEUIOBJECTPROPS structure to the OleUIObjectProperties function. This tab allows the user to toggle between "content" and "iconic" views of the object, and change its scaling within the container. It also allows the user to tunnel to the change icon dialog box when the object is being displayed iconically.
Syntax
typedef struct tagOLEUIVIEWPROPSA {
DWORD cbStruct;
DWORD dwFlags;
DWORD dwReserved1[2];
LPFNOLEUIHOOK lpfnHook;
LPARAM lCustData;
DWORD dwReserved2[3];
struct tagOLEUIOBJECTPROPSA *lpOP;
int nScaleMin;
int nScaleMax;
} OLEUIVIEWPROPSA, *POLEUIVIEWPROPSA, *LPOLEUIVIEWPROPSA;
Members
cbStruct
The size of the structure, in bytes.
dwFlags
Flags specific to view page.
Value | Meaning |
---|---|
|
Relative to origin. |
|
Disable relative to origin. |
|
Disable scale option. |
dwReserved1[2]
This member is reserved.
lpfnHook
Pointer to a hook callback (not used in this dialog box).
lCustData
Custom data to pass to the hook (not used in this dialog box).
dwReserved2[3]
This member is reserved.
lpOP
Used internally.
nScaleMin
Minimum value for the scale range.
nScaleMax
Maximum value for the scale range.
Remarks
Note
The oledlg.h header defines OLEUIVIEWPROPS as an alias which automatically selects the ANSI or Unicode version of this function based on the definition of the UNICODE preprocessor constant. Mixing usage of the encoding-neutral alias with code that not encoding-neutral can lead to mismatches that result in compilation or runtime errors. For more information, see Conventions for Function Prototypes.
Requirements
Requirement | Value |
---|---|
Minimum supported client | Windows 2000 Professional [desktop apps only] |
Minimum supported server | Windows 2000 Server [desktop apps only] |
Header | oledlg.h |