Indicates whether data stored in the clipboard object can be converted to or is associated with the specified format, using an automatic conversion parameter to determine whether to convert the data to the format.
Namespace: Microsoft.VisualStudio.Data.Framework
Assembly: Microsoft.VisualStudio.Data.Framework (in Microsoft.VisualStudio.Data.Framework.dll)
Syntax
'Declaration
Public Overrides Function GetDataPresent ( _
format As String, _
autoConvert As Boolean _
) As Boolean
'Usage
Dim instance As ClipboardObject
Dim format As String
Dim autoConvert As Boolean
Dim returnValue As Boolean
returnValue = instance.GetDataPresent(format, _
autoConvert)
public override bool GetDataPresent(
string format,
bool autoConvert
)
public:
virtual bool GetDataPresent(
String^ format,
bool autoConvert
) override
public override function GetDataPresent(
format : String,
autoConvert : boolean
) : boolean
Parameters
format
Type: System.StringThe class type associated with the data. See DataFormats for the predefined formats.
autoConvert
Type: System.BooleanSpecifies whether to check whether the data can be converted to the specified format (true), or check whether the data is in the specified format (false).
Return Value
Type: System.Boolean
true if the data can be converted to or is associated with the specified format; otherwise, false.
Implements
IDataObject.GetDataPresent(String, Boolean)
Remarks
This method delegates the call to the GetDataPresent method of the DataObject class.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.