Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
This method is same as ComponentSelectorDlg4(UInt32, IVsComponentUser, UInt32, array<IntPtr[], String, String, UInt32%, UInt32%, UInt32, array<VSCOMPONENTSELECTORTABINIT[], Guid%, String, String%, UInt32), except that it takes a TargetFrameworkMoniker instead of a TargetFrameworkVersion, so that it is compliant with extensible multi-targeting.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop.10.0 (in Microsoft.VisualStudio.Shell.Interop.10.0.dll)
Syntax
'Declaration
Function ComponentSelectorDlg5 ( _
grfFlags As UInteger, _
pUser As IVsComponentUser, _
cComponents As UInteger, _
rgpcsdComponents As IntPtr(), _
lpszDlgTitle As String, _
lpszHelpTopic As String, _
<OutAttribute> ByRef pxDlgSize As UInteger, _
<OutAttribute> ByRef pyDlgSize As UInteger, _
cTabInitializers As UInteger, _
rgcstiTabInitializers As VSCOMPONENTSELECTORTABINIT(), _
<OutAttribute> ByRef pguidStartOnThisTab As Guid, _
pszBrowseFilters As String, _
<OutAttribute> ByRef pbstrBrowseLocation As String, _
TargetFrameworkMoniker As String _
) As Integer
int ComponentSelectorDlg5(
uint grfFlags,
IVsComponentUser pUser,
uint cComponents,
IntPtr[] rgpcsdComponents,
string lpszDlgTitle,
string lpszHelpTopic,
out uint pxDlgSize,
out uint pyDlgSize,
uint cTabInitializers,
VSCOMPONENTSELECTORTABINIT[] rgcstiTabInitializers,
out Guid pguidStartOnThisTab,
string pszBrowseFilters,
out string pbstrBrowseLocation,
string TargetFrameworkMoniker
)
int ComponentSelectorDlg5(
[InAttribute] unsigned int grfFlags,
[InAttribute] IVsComponentUser^ pUser,
[InAttribute] unsigned int cComponents,
[InAttribute] array<IntPtr>^ rgpcsdComponents,
[InAttribute] String^ lpszDlgTitle,
[InAttribute] String^ lpszHelpTopic,
[InAttribute] [OutAttribute] unsigned int% pxDlgSize,
[InAttribute] [OutAttribute] unsigned int% pyDlgSize,
[InAttribute] unsigned int cTabInitializers,
[InAttribute] array<VSCOMPONENTSELECTORTABINIT>^ rgcstiTabInitializers,
[InAttribute] [OutAttribute] Guid% pguidStartOnThisTab,
[InAttribute] String^ pszBrowseFilters,
[InAttribute] [OutAttribute] String^% pbstrBrowseLocation,
[InAttribute] String^ TargetFrameworkMoniker
)
abstract ComponentSelectorDlg5 :
grfFlags:uint32 *
pUser:IVsComponentUser *
cComponents:uint32 *
rgpcsdComponents:IntPtr[] *
lpszDlgTitle:string *
lpszHelpTopic:string *
pxDlgSize:uint32 byref *
pyDlgSize:uint32 byref *
cTabInitializers:uint32 *
rgcstiTabInitializers:VSCOMPONENTSELECTORTABINIT[] *
pguidStartOnThisTab:Guid byref *
pszBrowseFilters:string *
pbstrBrowseLocation:string byref *
TargetFrameworkMoniker:string -> int
function ComponentSelectorDlg5(
grfFlags : uint,
pUser : IVsComponentUser,
cComponents : uint,
rgpcsdComponents : IntPtr[],
lpszDlgTitle : String,
lpszHelpTopic : String,
pxDlgSize : uint,
pyDlgSize : uint,
cTabInitializers : uint,
rgcstiTabInitializers : VSCOMPONENTSELECTORTABINIT[],
pguidStartOnThisTab : Guid,
pszBrowseFilters : String,
pbstrBrowseLocation : String,
TargetFrameworkMoniker : String
) : int
Parameters
- grfFlags
Type: System.UInt32
Component selection flags taken from the VSCOMPSELFLAGS2 enumerator.
- pUser
Type: Microsoft.VisualStudio.Shell.Interop.IVsComponentUser
Interface on which AddComponent will be called.
- cComponents
Type: System.UInt32
Number of components in the rgpcsdComponents array.
- rgpcsdComponents
Type: array<System.IntPtr[]
Prepopulation of Selected Components. Can be nulla null reference (Nothing in Visual Basic). User has the ability to remove any of these components from the list.
- lpszDlgTitle
Type: System.String
Dialog box caption (nulla null reference (Nothing in Visual Basic) == "Select component").
- lpszHelpTopic
Type: System.String
F1 help topic (nulla null reference (Nothing in Visual Basic) == "VS.ComponentPicker").
- pxDlgSize
Type: System.UInt32%
0 to use default.
- pyDlgSize
Type: System.UInt32%
- cTabInitializers
Type: System.UInt32
Number of tabs.
- rgcstiTabInitializers
Type: array<Microsoft.VisualStudio.Shell.Interop.VSCOMPONENTSELECTORTABINIT[]
Show order of tabs and their initialization info.
- pguidStartOnThisTab
Type: System.Guid%
Tab to show when the dialog starts up.
- pszBrowseFilters
Type: System.String
List of filters to use in 'Browse…'.
- pbstrBrowseLocation
Type: System.String%
Directory (initial/return value) to start the 'Browse…' dialog in.
- TargetFrameworkMoniker
Type: System.String
The target framework moniker.
Return Value
Type: System.Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.