Share via


ListObjectExtensions.GetVstoObject Method (ListObject, ApplicationFactory)

Returns a Microsoft.Office.Tools.Excel.ListObject host control that extends the functionality of the current Microsoft.Office.Interop.Excel.ListObject object in an application-level add-in. Pass the Globals.Factory object in your project to the factory parameter.

Namespace:  Microsoft.Office.Tools.Excel.Extensions
Assembly:  Microsoft.Office.Tools.Excel.v4.0.Utilities (in Microsoft.Office.Tools.Excel.v4.0.Utilities.dll)

Syntax

'Declaration
<ExtensionAttribute> _
Public Shared Function GetVstoObject ( _
    listObject As ListObject, _
    factory As ApplicationFactory _
) As ListObject
public static ListObject GetVstoObject(
    this ListObject listObject,
    ApplicationFactory factory
)

Parameters

  • listObject
    Type: Microsoft.Office.Interop.Excel.ListObject
    The native list object to extend. Do not supply this parameter yourself. When you call this method on an Excel list object, the runtime supplies this parameter.

Return Value

Type: Microsoft.Office.Tools.Excel.ListObject
A host control that extends the functionality of the current Microsoft.Office.Interop.Excel.ListObject object.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type ListObject. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

Remarks

In an application-level add-in, call this method to extend any list object that is open in Excel. This method generates a new Microsoft.Office.Tools.Excel.ListObject host control if no such object has already been generated for the Microsoft.Office.Interop.Excel.ListObject object on which you call this method. Subsequent calls to this method on the same Microsoft.Office.Interop.Excel.ListObject object return the same Microsoft.Office.Tools.Excel.ListObject instance.

This method is provided for backward compatibility with Office projects that you retarget from the .NET Framework 3.5 to the .NET Framework 4. In new projects that target the .NET Framework 4, you should call the GetVstoObject method that is provided by the Globals.Factory object in your project.

For more information, see Extending Word Documents and Excel Workbooks in Application-Level Add-ins at Run Time.

.NET Framework Security

See Also

Reference

ListObjectExtensions Class

GetVstoObject Overload

Microsoft.Office.Tools.Excel.Extensions Namespace

Other Resources

Extending Word Documents and Excel Workbooks in Application-Level Add-ins at Run Time

Extension Methods (C# Programming Guide)

Extension Methods (Visual Basic)