DocumentProperties.SelectObjects Method

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

Namespace:  Microsoft.VisualStudio.Package
Assemblies:   Microsoft.VisualStudio.Package.LanguageService.10.0 (in Microsoft.VisualStudio.Package.LanguageService.10.0.dll)
  Microsoft.VisualStudio.Package.LanguageService (in Microsoft.VisualStudio.Package.LanguageService.dll)
  Microsoft.VisualStudio.Package.LanguageService.9.0 (in Microsoft.VisualStudio.Package.LanguageService.9.0.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
)
abstract SelectObjects : 
        sel:uint32 * 
        selobj:Object[] * 
        flags:uint32 -> int 
override SelectObjects : 
        sel:uint32 * 
        selobj:Object[] * 
        flags:uint32 -> int 
public function SelectObjects(
    sel : uint, 
    selobj : Object[], 
    flags : uint
) : int

Parameters

  • sel
    Type: System.UInt32
    [in] The number of objects in the selobj array.

Return Value

Type: System.Int32
If successful, returns S_OK; otherwise, returns an error code.

Implements

ISelectionContainer.SelectObjects(UInt32, array<Object[], 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.

.NET Framework Security

See Also

Reference

DocumentProperties Class

DocumentProperties Members

Microsoft.VisualStudio.Package Namespace