DocumentProperties.SelectObjects Method

Called to manage the selection of multiple objects in the Properties window.

Namespace:  Microsoft.VisualStudio.Package
Assembly:  Microsoft.VisualStudio.Package.LanguageService (in Microsoft.VisualStudio.Package.LanguageService.dll)

Syntax

'宣言
Public Overridable Function SelectObjects ( _
    sel As UInteger, _
    selobj As Object(), _
    flags As UInteger _
) As Integer
'使用
Dim instance As DocumentProperties
Dim sel As UInteger
Dim selobj As Object()
Dim flags As UInteger
Dim returnValue As Integer

returnValue = instance.SelectObjects(sel, _
    selobj, flags)
public virtual int SelectObjects(
    uint sel,
    Object[] selobj,
    uint flags
)
public:
virtual int SelectObjects(
    unsigned int sel, 
    array<Object^>^ selobj, 
    unsigned int flags
)
public function SelectObjects(
    sel : uint, 
    selobj : Object[], 
    flags : uint
) : int

Parameters

  • sel
    Type: System.UInt32

    [in] The number of objects in the selobj array.

  • selobj
    Type: []

    [in] An array of objects returned from the GetObjects method.

Return Value

Type: System.Int32

If successful, returns S_OK; otherwise, returns an error code.

Implements

ISelectionContainer.SelectObjects(UInt32, [], UInt32)

Remarks

This method is used in managing multiple objects in the Properties window. A language service typically needs only the one DocumentProperties object and the base method handles this automatically.

This method is an implementation of the SelectObjects method on the ISelectionContainer interface.

The base method does nothing and always returns a success code of S_OK.

Permissions

See Also

Reference

DocumentProperties Class

DocumentProperties Members

Microsoft.VisualStudio.Package Namespace