Declaration
Getting property value:
Automation:
byte *  value = obj.Data;
Native (C++):
HRESULT  get_ Data ( [out, retval]   unsigned char * *  ppval) ;
Parameters
ppvalPointer to a variable that receives a raw data pointer.
Return Value
Automation:Raw pointer to data. May only be passed to methods.Native: S_OK or standard OLE error code.
Remarks
Retrieve the raw pointer to data. The value returned should not be used by any means except for passing it to methods of the IFileDocument.

See Also