Class TYMED
The TYMED enumeration values indicate the type of storage medium being used in a data transfer.
Inheritance
Namespace: Syncfusion.CompoundFile.XlsIO.Native
Assembly: Syncfusion.XlsIO.UWP.dll
Syntax
public sealed class TYMED : Enum
Fields
TYMED_ENHMF
The storage medium is an enhanced metafile. If the STGMEDIUM punkForRelease member is NULL, the destination process should use DeleteEnhMetaFile to delete the bitmap.
Declaration
public const TYMED TYMED_ENHMF
Field Value
Type |
---|
TYMED |
TYMED_FILE
The storage medium is a disk file identified by a path. If the STGMEDIUM punkForRelease member is NULL, the destination process should use OpenFile to delete the file.
Declaration
public const TYMED TYMED_FILE
Field Value
Type |
---|
TYMED |
TYMED_GDI
The storage medium is a GDI component (HBITMAP). If the STGMEDIUM punkForRelease member is NULL, the destination process should use DeleteObject to delete the bitmap.
Declaration
public const TYMED TYMED_GDI
Field Value
Type |
---|
TYMED |
TYMED_HGLOBAL
The storage medium is a global memory handle (HGLOBAL). Allocate the global handle with the GMEM_SHARE flag.
Declaration
public const TYMED TYMED_HGLOBAL
Field Value
Type |
---|
TYMED |
TYMED_ISTORAGE
The storage medium is a storage component identified by an IStorage pointer.
Declaration
public const TYMED TYMED_ISTORAGE
Field Value
Type |
---|
TYMED |
TYMED_ISTREAM
The storage medium is a stream object identified by an IStream pointer. Use ISequentialStream::Read to read the data.
Declaration
public const TYMED TYMED_ISTREAM
Field Value
Type |
---|
TYMED |
TYMED_MFPICT
The storage medium is a metafile (HMETAFILE). Use the Windows or WIN32 functions to access the metafile's data.
Declaration
public const TYMED TYMED_MFPICT
Field Value
Type |
---|
TYMED |
TYMED_NULL
No data is being passed.
Declaration
public const TYMED TYMED_NULL
Field Value
Type |
---|
TYMED |