DataFormats.Bitmap Field
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.
Specifies a Windows bitmap format. This static
field is read-only.
public: static initonly System::String ^ Bitmap;
public static readonly string Bitmap;
staticval mutable Bitmap : string
Public Shared ReadOnly Bitmap As String
Field Value
Remarks
A bitmap represents a computer graphic as an array of bits in memory, and these bits represent the attributes of the individual pixels in an image.
This field is used by the IDataObject interface and the DataObject class to specify the data type.
When adding to an IDataObject or to an implementation of DataObject, use this field as the format for the IDataObject.SetData and DataObject.SetData methods.
To see if an object of this type exists, use this field as the format for the IDataObject.GetDataPresent and DataObject.GetDataPresent methods.
To get an object of this type, use this as the format for the IDataObject.GetData and DataObject.GetData methods.