GraphDataObject.GetDataPresent Method

Definition

Overloads

GetDataPresent(String, Boolean)

Determines if the passed in format is supported by this data object

GetDataPresent(Type)

Determines if the passed in format is supported

GetDataPresent(String)

Determines if the passed in format is supported

GetDataPresent(String, Boolean)

Determines if the passed in format is supported by this data object

public:
 virtual bool GetDataPresent(System::String ^ format, bool autoConvert);
public bool GetDataPresent (string format, bool autoConvert);
abstract member GetDataPresent : string * bool -> bool
override this.GetDataPresent : string * bool -> bool
Public Function GetDataPresent (format As String, autoConvert As Boolean) As Boolean

Parameters

format
String

The desired format

autoConvert
Boolean

Ignored

Returns

True if the format is supported, false otherwise

Implements

Applies to

GetDataPresent(Type)

Determines if the passed in format is supported

public:
 virtual bool GetDataPresent(Type ^ format);
public bool GetDataPresent (Type format);
abstract member GetDataPresent : Type -> bool
override this.GetDataPresent : Type -> bool
Public Function GetDataPresent (format As Type) As Boolean

Parameters

format
Type

The type representing the format desired

Returns

True if the format is supported, false otherwise

Implements

Applies to

GetDataPresent(String)

Determines if the passed in format is supported

public:
 virtual bool GetDataPresent(System::String ^ format);
public bool GetDataPresent (string format);
abstract member GetDataPresent : string -> bool
override this.GetDataPresent : string -> bool
Public Function GetDataPresent (format As String) As Boolean

Parameters

format
String

The format desired

Returns

True if the format is supported, false otherwise

Implements

Applies to