Completion2 Конструкторы

Определение

Перегрузки

Completion2()

Инициализирует новый экземпляр Completion2.

Completion2(String, String, String, ImageSource, String)

Инициализирует новый экземпляр Completion2 с указанными текстом и описанием.

Completion2(String, String, String, ImageSource, String, IEnumerable<CompletionIcon>)

Инициализирует новый экземпляр Completion2 с указанными текстом и описанием.

Completion2()

Инициализирует новый экземпляр Completion2.

public:
 Completion2();
public:
 Completion2();
 Completion2();
public Completion2 ();
Public Sub New ()

Применяется к

Completion2(String, String, String, ImageSource, String)

Инициализирует новый экземпляр Completion2 с указанными текстом и описанием.

public:
 Completion2(System::String ^ displayText, System::String ^ insertionText, System::String ^ description, System::Windows::Media::ImageSource ^ iconSource, System::String ^ iconAutomationText);
public Completion2 (string displayText, string insertionText, string description, System.Windows.Media.ImageSource iconSource, string iconAutomationText);
new Microsoft.VisualStudio.Language.Intellisense.Completion2 : string * string * string * System.Windows.Media.ImageSource * string -> Microsoft.VisualStudio.Language.Intellisense.Completion2
Public Sub New (displayText As String, insertionText As String, description As String, iconSource As ImageSource, iconAutomationText As String)

Параметры

displayText
String

Текст, который должен отображаться средством отображения IntelliSense.

insertionText
String

Текст, который должен вставляться в буфер при фиксации данного завершения.

description
String

Описание, которое может отображаться с отображаемым текстом завершения.

iconSource
ImageSource

Значок для описания элемента завершения.

iconAutomationText
String

Имя автоматизации для значка.

Применяется к

Completion2(String, String, String, ImageSource, String, IEnumerable<CompletionIcon>)

Инициализирует новый экземпляр Completion2 с указанными текстом и описанием.

public:
 Completion2(System::String ^ displayText, System::String ^ insertionText, System::String ^ description, System::Windows::Media::ImageSource ^ iconSource, System::String ^ iconAutomationText, System::Collections::Generic::IEnumerable<Microsoft::VisualStudio::Language::Intellisense::CompletionIcon ^> ^ attributeIcons);
public Completion2 (string displayText, string insertionText, string description, System.Windows.Media.ImageSource iconSource, string iconAutomationText, System.Collections.Generic.IEnumerable<Microsoft.VisualStudio.Language.Intellisense.CompletionIcon> attributeIcons);
new Microsoft.VisualStudio.Language.Intellisense.Completion2 : string * string * string * System.Windows.Media.ImageSource * string * seq<Microsoft.VisualStudio.Language.Intellisense.CompletionIcon> -> Microsoft.VisualStudio.Language.Intellisense.Completion2
Public Sub New (displayText As String, insertionText As String, description As String, iconSource As ImageSource, iconAutomationText As String, attributeIcons As IEnumerable(Of CompletionIcon))

Параметры

displayText
String

Текст, который должен отображаться средством отображения IntelliSense.

insertionText
String

Текст, который должен вставляться в буфер при фиксации данного завершения.

description
String

Описание, которое может отображаться с отображаемым текстом завершения.

iconSource
ImageSource

Значок для описания элемента завершения.

iconAutomationText
String

Имя автоматизации для значка.

attributeIcons
IEnumerable<CompletionIcon>

Дополнительные значки, отображаемые справа от DisplayText.

Применяется к