Proprietà WorksheetBase.QueryTables
Ottiene l'insieme Microsoft.Office.Interop.Excel.QueryTables che rappresenta tutte le tabelle di query incluse nel foglio di lavoro.
Spazio dei nomi: Microsoft.Office.Tools.Excel
Assembly: Microsoft.Office.Tools.Excel.v4.0.Utilities (in Microsoft.Office.Tools.Excel.v4.0.Utilities.dll)
Sintassi
'Dichiarazione
Public ReadOnly Property QueryTables As QueryTables
Get
public QueryTables QueryTables { get; }
Valore proprietà
Tipo: Microsoft.Office.Interop.Excel.QueryTables
Insieme Microsoft.Office.Interop.Excel.QueryTables che rappresenta tutte le tabelle di query incluse nel foglio di lavoro.
Esempi
Nell'esempio di codice riportato di seguito viene utilizzata la proprietà QueryTables per aggiornare i dati in ciascun oggetto Microsoft.Office.Interop.Excel.QueryTable presente nel foglio di lavoro corrente.
Questo esempio è valido per una personalizzazione a livello di documento.
Private Sub RefreshQueryTables()
If Me.QueryTables.Count > 0 Then
Dim i As Integer
For i = 1 To Me.QueryTables.Count
If Not Me.QueryTables(i).Refresh() Then
MsgBox("Refresh of query table " & Me.QueryTables(i).Name & _
" failed.")
End If
Next i
Else
MsgBox("This worksheet contains no query tables.")
End If
End Sub
private void RefreshQueryTables()
{
if (this.QueryTables.Count > 0)
{
for (int i = 1; i <= this.QueryTables.Count; i++)
{
if (!this.QueryTables[i].Refresh(missing))
{
MessageBox.Show("Refresh of query table " +
this.QueryTables[i].Name + " failed.");
}
}
}
else
{
MessageBox.Show("This worksheet contains no query tables.");
}
}
Sicurezza di .NET Framework
- Attendibilità totale per il chiamante immediato. Impossibile utilizzare questo membro in codice parzialmente attendibile. Per ulteriori informazioni, vedere Utilizzo di librerie da codice parzialmente attendibile.