 |
GetObject ..msdn Add comment W32 Constants Translate this page |
 |
 |
|
The GetObject function retrieves information for the specified graphics object. |
 |
 |
| Code examples: |
 |
|
|
 |
 |
| Declaration: |
 |
 |
int GetObject(
HGDIOBJ hgdiobj, // handle to graphics object
int cbBuffer, // size of buffer for object info
LPVOID lpvObject // buffer for object info
);
|
 |
 |
 |
| FoxPro declaration: |
 |
 |
DECLARE INTEGER GetObject IN gdi32;
AS GetObjectA;
INTEGER hgdiobj,;
INTEGER cbBuffer,;
STRING @ lpvObject
|
 |
 |
 |
| Parameters: |
 |
hgdiobj
[in] Handle to the graphics object of interest.
cbBuffer
[in] Specifies the number of bytes of information to be written to the buffer.
lpvObject
[out] Pointer to a buffer that receives the information about the specified graphics object. |
 |
 |
| Return value: |
 |
| If the function succeeds, and lpvObject is a valid pointer, the return value is the number of bytes stored into the buffer. |
 |
 |
| My comment: |
 |
| Notice that GetObject is a name of a native VFP function with different purpose and interface. So the name GetObject ia already reserved. That is why this external function is declared with an alias. |
 |
 |
| Word Index links for the GetObject : |
 |
|
|
 |
 |
| Translate this page: |
 |
|
 |
 |
| • |
 |
| Created: | 2001-11-05 20:50:45 | | Modified: | 2005-12-02 18:15:55 | Visited in last 7 days: 48 |