VintaSoft Imaging .NET SDK 15.0: Documentation for .NET developer
Vintasoft.Imaging.Utils Namespace / SyncClipboard Class / GetDataAsync(String,Object,AsyncClipboardCallback,AsyncClipboardCallback) Method
Syntax Requirements SeeAlso
In This Topic
    GetDataAsync(String,Object,AsyncClipboardCallback,AsyncClipboardCallback) Method (SyncClipboard)
    In This Topic
    Asynchronously retrieves data, in the specified format, from the clipboard.
    Syntax
    'Declaration
    
    Public Sub GetDataAsync( _
    ByVal format
    The format.
    As System.String, _
    ByVal sender
    The sender object.
    As System.Object, _
    ByVal successCallback
    The callback method that must be called if operation is executed successfully.
    As AsyncClipboardCallback, _
    ByVal errorCallback
    The callback method that must be called if operation is failed.
    As AsyncClipboardCallback _
    )
    public void GetDataAsync(
    System.String format,
    System.Object sender,
    AsyncClipboardCallback successCallback,
    AsyncClipboardCallback errorCallback
    )
    public: void GetDataAsync(
    System.String format,
    System.Object sender,
    AsyncClipboardCallback* successCallback,
    AsyncClipboardCallback* errorCallback
    )
    public:
    void GetDataAsync(
    System.String format,
    System.Object sender,
    AsyncClipboardCallback^ successCallback,
    AsyncClipboardCallback^ errorCallback
    )

    Parameters

    format
    The format.
    sender
    The sender object.
    successCallback
    The callback method that must be called if operation is executed successfully.
    errorCallback
    The callback method that must be called if operation is failed.
    Requirements

    Target Platforms: .NET 10; .NET 9; .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also