共用方式為


PdfDocument.LoadFromFileAsync 方法

定義

多載

LoadFromFileAsync(IStorageFile)

輸出非同步作業。 當作業完成時,會傳回 PdfDocument 物件,代表可攜式檔案格式 (PDF) 檔。

LoadFromFileAsync(IStorageFile, String)

輸出非同步作業。 當作業完成時,會傳回 PdfDocument 物件,代表可攜式檔案格式 (PDF) 檔。 如果可攜式檔案格式 (PDF) 檔受到密碼保護,請使用此方法。

LoadFromFileAsync(IStorageFile)

輸出非同步作業。 當作業完成時,會傳回 PdfDocument 物件,代表可攜式檔案格式 (PDF) 檔。

public:
 static IAsyncOperation<PdfDocument ^> ^ LoadFromFileAsync(IStorageFile ^ file);
/// [Windows.Foundation.Metadata.Overload("LoadFromFileAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
 static IAsyncOperation<PdfDocument> LoadFromFileAsync(IStorageFile const& file);
[Windows.Foundation.Metadata.Overload("LoadFromFileAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncOperation<PdfDocument> LoadFromFileAsync(IStorageFile file);
function loadFromFileAsync(file)
Public Shared Function LoadFromFileAsync (file As IStorageFile) As IAsyncOperation(Of PdfDocument)

參數

file
IStorageFile

檔案,代表可攜式檔案格式 (PDF) 檔。

傳回

非同步作業。

屬性

另請參閱

適用於

LoadFromFileAsync(IStorageFile, String)

輸出非同步作業。 當作業完成時,會傳回 PdfDocument 物件,代表可攜式檔案格式 (PDF) 檔。 如果可攜式檔案格式 (PDF) 檔受到密碼保護,請使用此方法。

public:
 static IAsyncOperation<PdfDocument ^> ^ LoadFromFileAsync(IStorageFile ^ file, Platform::String ^ password);
/// [Windows.Foundation.Metadata.Overload("LoadFromFileWithPasswordAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
 static IAsyncOperation<PdfDocument> LoadFromFileAsync(IStorageFile const& file, winrt::hstring const& password);
[Windows.Foundation.Metadata.Overload("LoadFromFileWithPasswordAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncOperation<PdfDocument> LoadFromFileAsync(IStorageFile file, string password);
function loadFromFileAsync(file, password)
Public Shared Function LoadFromFileAsync (file As IStorageFile, password As String) As IAsyncOperation(Of PdfDocument)

參數

file
IStorageFile

檔案,代表可攜式檔案格式 (PDF) 檔。

password
String

Platform::String

winrt::hstring

如果需要,開啟可攜式檔案格式 (PDF) 檔的密碼。

傳回

非同步作業。

屬性

備註

如果可攜式檔案格式 (PDF) 檔不需要密碼,則此方法會忽略它。

如果指定了錯誤的密碼 這個方法會傳回ERROR_WRONG_PASSWORD錯誤。

另請參閱

適用於