IVsSyntheticRegion.GetClientData Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
GetClientData(IntPtr) | |
GetClientData(UInt32) |
Gets the client data for the region. |
GetClientData(IntPtr)
public:
int GetClientData([Runtime::InteropServices::Out] IntPtr % pdwData);
public int GetClientData (out IntPtr pdwData);
abstract member GetClientData : nativeint -> int
Public Function GetClientData (ByRef pdwData As IntPtr) As Integer
Parameters
- pdwData
-
IntPtr
nativeint
Returns
Applies to
GetClientData(UInt32)
Gets the client data for the region.
public:
int GetClientData([Runtime::InteropServices::Out] System::UInt32 % pdwData);
int GetClientData([Runtime::InteropServices::Out] unsigned int & pdwData);
public int GetClientData (out uint pdwData);
abstract member GetClientData : uint32 -> int
Public Function GetClientData (ByRef pdwData As UInteger) As Integer
Parameters
- pdwData
- UInt32
[out] The data associated with the region.
Returns
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
COM Signature
From textmgr.idl:
HRESULT IVsSyntheticRegion::GetClientData(
[out] DWORD_PTR *pdwData
);