タイプ WebQuery の外部データ接続の操作
Contents
[
Hide
]
Workbook.DataConnections コレクションを使用して、任意の種類の外部データ接続にアクセスできます。このようなデータ接続の 1 つのタイプは WebQuery です。この記事では、WebQuery データ接続を使用する方法について説明します。を使用して、Microsoft Excel で WebQuery データ接続を作成できます。データ > ウェブからメニュー。
タイプ WebQuery の外部データ接続の操作
次のコードは、タイプの外部データ接続を操作する方法を示していますウェブクエリ.それはサンプルエクセルファイル提供されたリンクからダウンロードできます。このコードのコンソール出力は、さらに下にあります。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET | |
// The path to the documents directory. | |
string dataDir = RunExamples.GetDataDir(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | |
Workbook workbook = new Workbook(dataDir + "WebQuerySample.xlsx"); | |
ExternalConnection connection = workbook.DataConnections[0]; | |
if (connection is WebQueryConnection) | |
{ | |
WebQueryConnection webQuery = (WebQueryConnection)connection; | |
Console.WriteLine("Web Query URL: " + webQuery.Url); | |
} |
コンソール出力
これは、これを使用した上記のコードのコンソール出力ですサンプルエクセルファイル.
Web Query URL: https://docs.aspose.com/cells/net/