Method | Description | |
---|---|---|
GetData ( string format, int index ) : |
Retrieves the data associated with the specified data format at the specified index.
|
|
GetData ( |
Retrieves the data associated with the specified class type format.
|
|
GetData ( string format ) : object |
Retrieves the data associated with the specified data format.
|
|
GetData ( string format, bool autoConvert ) : object |
Retrieves the data associated with the specified data format, using a Boolean to determine whether to convert the data to the format.
|
|
GetDataPresent ( |
Determines whether data stored in this instance is associated with, or can be converted to, the specified format.
|
|
GetDataPresent ( string format ) : bool |
Determines whether data stored in this instance is associated with, or can be converted to, the specified format.
|
|
GetDataPresent ( string format, bool autoConvert ) : bool |
Determines whether data stored in this instance is associated with the specified format, using a Boolean value to determine whether to convert the data to the format.
|
|
GetFormats ( ) : string[] |
Returns a list of all formats that data stored in this instance is associated with or can be converted to.
|
|
GetFormats ( bool autoConvert ) : string[] |
Gets a list of all formats that data stored in this instance is associated with or can be converted to, using a Boolean value to determine whether to retrieve all formats that the data can be converted to or only native data formats.
|
|
OleDropData ( System underlyingDataObject ) : System |
Initializes a new instance of the OutlookDataObject class.
|
|
SetData ( |
Stores the specified data and its associated class type in this instance.
|
|
SetData ( object data ) : void |
Stores the specified data in this instance, using the class of the data for the format.
|
|
SetData ( string format, bool autoConvert, object data ) : void |
Stores the specified data and its associated format in this instance, using a Boolean value to specify whether the data can be converted to another format.
|
|
SetData ( string format, object data ) : void |
Stores the specified data and its associated format in this instance.
|
public GetData ( string format, int index ) : |
||
format | string | The format of the data to retrieve. See |
index | int | The index of the data to retrieve. |
return |
public GetData ( |
||
format | A |
|
return | object |
public GetData ( string format ) : object | ||
format | string | The format of the data to retrieve. See |
return | object |
public GetData ( string format, bool autoConvert ) : object | ||
format | string | The format of the data to retrieve. See |
autoConvert | bool | true to convert the data to the specified format; otherwise, false. |
return | object |
public GetDataPresent ( |
||
format | A |
|
return | bool |
public GetDataPresent ( string format ) : bool | ||
format | string | The format for which to check. See |
return | bool |
public GetDataPresent ( string format, bool autoConvert ) : bool | ||
format | string | The format for which to check. See |
autoConvert | bool | true to determine whether data stored in this instance can be converted to the specified format; false to check whether the data is in the specified format. |
return | bool |
public GetFormats ( bool autoConvert ) : string[] | ||
autoConvert | bool | true to retrieve all formats that data stored in this instance is associated with or can be converted to; false to retrieve only native data formats. |
return | string[] |
public OleDropData ( System underlyingDataObject ) : System | ||
underlyingDataObject | System | The underlying data object to wrap. |
return | System |
public SetData ( |
||
format | A |
|
data | object | The data to store. |
return | void |
public SetData ( object data ) : void | ||
data | object | The data to store. |
return | void |
public SetData ( string format, bool autoConvert, object data ) : void | ||
format | string | The format associated with the data. See |
autoConvert | bool | true to allow the data to be converted to another format; otherwise, false. |
data | object | The data to store. |
return | void |
public SetData ( string format, object data ) : void | ||
format | string | The format associated with the data. See |
data | object | The data to store. |
return | void |