DropDownMember Constructor
Initializes a new instance of the DropDownMember class.
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
'Dichiarazione
Public Sub New ( _
label As String, _
span As TextSpan, _
glyph As Integer, _
fontAttribute As DROPDOWNFONTATTR _
)
'Utilizzo
Dim label As String
Dim span As TextSpan
Dim glyph As Integer
Dim fontAttribute As DROPDOWNFONTATTR
Dim instance As New DropDownMember(label, span, _
glyph, fontAttribute)
public DropDownMember(
string label,
TextSpan span,
int glyph,
DROPDOWNFONTATTR fontAttribute
)
public:
DropDownMember(
String^ label,
TextSpan span,
int glyph,
DROPDOWNFONTATTR fontAttribute
)
new :
label:string *
span:TextSpan *
glyph:int *
fontAttribute:DROPDOWNFONTATTR -> DropDownMember
public function DropDownMember(
label : String,
span : TextSpan,
glyph : int,
fontAttribute : DROPDOWNFONTATTR
)
Parameters
- label
Type: System.String
[in] A string representing the text to be shown in the combo box.
- span
Type: Microsoft.VisualStudio.TextManager.Interop.TextSpan
[in] A TextSpan object that specifies the location in the source this entry represents.
- glyph
Type: System.Int32
[in] An index into an image list to a glyph that is shown with this entry in the combo box.
- fontAttribute
Type: Microsoft.VisualStudio.TextManager.Interop.DROPDOWNFONTATTR
[in] A collection flags from the DROPDOWNFONTATTR enumeration describing how to render the label in the combo box.
Remarks
These four parameters specify everything needed by the combo box to show an entry.
.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.