|
OLEUILINKPROPS
This structure is used to initialize the Link 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 shows the location, update status, and update time for a
link. It allows the user to change the source of the link, toggle its update
status between automatic and manual update, open the source, force an update of
the link, or break the link (convert it to a static picture).
// These IN fields are standard across all OLEUI property pages.
typedef struct tagOLEUILINKPROPSW
{
// These IN fields are standard across all OLEUI property pages.
DWORD cbStruct;
DWORD dwFlags;
DWORD dwReserved1[2];
LPFNOLEUIHOOK lpfnHook;
LPARAM lCustData;
DWORD dwReserved2[3];
struct tagOLEUIOBJECTPROPSW* lpOP;
} OLEUILINKPROPSW, *POLEUILINKPROPSW, FAR* LPOLEUILINKPROPSW;
cbStruct
Size of the structure in bytes.
dwFlags
Contains in-out flags specific to the links page.
dwReserved1[2];
Reserved for future use.
lpfnHook
Hook callback (not used in this dialog).
lCustData
Custom data to pass to hook (not used in this dialog).
dwReserved2[3]
Reserved for future use.
struct tagOLEUIOBJECTPROPS* lpOP;
Used internally.
See Also
OleUIObjectProperties, OLEUIOBJECTPROPS
Related LinksSoftware for Delphi and C++ Builder developers Software for Visual Studio .NET developers Software for Visual Basic 6 developers Delphi Tips&Tricks MegaDetailed.NET More Online Helps Win32 Programmer's Reference (win32.hlp) Win32 Multimedia Programmer's Reference (mmedia.hlp) Microsoft Windows Pen API Programmer's Reference (penapi.hlp) Microsoft Windows Sockets 2 Reference (sock2.hlp) Microsoft Windows Telephony API (TAPI) Programmer's Reference (sock2.hlp) Unix Manual Pages
|