NamedRange.QueryTable Property (2007 System)

Gets a QueryTable that represents the query table that intersects the NamedRange control.

Namespace:  Microsoft.Office.Tools.Excel
Assembly:  Microsoft.Office.Tools.Excel.v9.0 (in Microsoft.Office.Tools.Excel.v9.0.dll)

Syntax

'Declaration
<BrowsableAttribute(False)> _
Public ReadOnly Property QueryTable As QueryTable
'Usage
Dim instance As NamedRange 
Dim value As QueryTable 

value = instance.QueryTable
[BrowsableAttribute(false)]
public QueryTable QueryTable { get; }
[BrowsableAttribute(false)]
public:
property QueryTable^ QueryTable {
    QueryTable^ get ();
}
public function get QueryTable () : QueryTable

Property Value

Type: QueryTable
A QueryTable that represents the query table that intersects the NamedRange control.

Examples

The following code example uses the QueryTable property to refresh a query table that intersects a NamedRange. This code example assumes that the worksheet contains a query table that intersects cell C1.

This example is for a document-level customization.

Private queryTableRange As Microsoft.Office.Tools.Excel.NamedRange

Private Sub RefreshQueryTable()
    queryTableRange = Me.Controls.AddNamedRange( _
        Me.Range("C1"), "queryTableRange")
    Me.queryTableRange.QueryTable.Refresh()
End Sub
Microsoft.Office.Tools.Excel.NamedRange queryTableRange;
private void RefreshQueryTable()
{
    queryTableRange = this.Controls.AddNamedRange(
         this.Range["C1", missing], "queryTableRange");
    this.queryTableRange.QueryTable.Refresh(missing);
}

.NET Framework Security

See Also

Reference

NamedRange Class

NamedRange Members

Microsoft.Office.Tools.Excel Namespace