DescriptionRun Constructeurs

Définition

Surcharges

DescriptionRun(String)

Crée un nouveau DescriptionRun.

DescriptionRun(String, Boolean)

Crée un nouveau DescriptionRun.

DescriptionRun(String, Color)

Crée un nouveau DescriptionRun.

DescriptionRun(String, Color, Boolean, Boolean, Boolean)

Crée un nouveau DescriptionRun.

DescriptionRun(String)

Crée un nouveau DescriptionRun.

public:
 DescriptionRun(System::String ^ text);
public:
 DescriptionRun(Platform::String ^ text);
 DescriptionRun(std::wstring const & text);
public DescriptionRun (string text);
new Microsoft.VisualStudio.Language.NavigateTo.Interfaces.DescriptionRun : string -> Microsoft.VisualStudio.Language.NavigateTo.Interfaces.DescriptionRun
Public Sub New (text As String)

Paramètres

text
String

Texte de l’exécution.

S’applique à

DescriptionRun(String, Boolean)

Crée un nouveau DescriptionRun.

public:
 DescriptionRun(System::String ^ text, bool bold);
public:
 DescriptionRun(Platform::String ^ text, bool bold);
 DescriptionRun(std::wstring const & text, bool bold);
public DescriptionRun (string text, bool bold);
new Microsoft.VisualStudio.Language.NavigateTo.Interfaces.DescriptionRun : string * bool -> Microsoft.VisualStudio.Language.NavigateTo.Interfaces.DescriptionRun
Public Sub New (text As String, bold As Boolean)

Paramètres

text
String

Texte de l’exécution.

bold
Boolean

Si l’exécution doit être mise en gras.

S’applique à

DescriptionRun(String, Color)

Crée un nouveau DescriptionRun.

public:
 DescriptionRun(System::String ^ text, System::Drawing::Color color);
public DescriptionRun (string text, System.Drawing.Color color);
new Microsoft.VisualStudio.Language.NavigateTo.Interfaces.DescriptionRun : string * System.Drawing.Color -> Microsoft.VisualStudio.Language.NavigateTo.Interfaces.DescriptionRun
Public Sub New (text As String, color As Color)

Paramètres

text
String

Texte de l’exécution.

color
Color

Couleur de DescriptionRun.

S’applique à

DescriptionRun(String, Color, Boolean, Boolean, Boolean)

Crée un nouveau DescriptionRun.

public:
 DescriptionRun(System::String ^ text, System::Drawing::Color color, bool bold, bool italic, bool underline);
public DescriptionRun (string text, System.Drawing.Color color, bool bold, bool italic, bool underline);
new Microsoft.VisualStudio.Language.NavigateTo.Interfaces.DescriptionRun : string * System.Drawing.Color * bool * bool * bool -> Microsoft.VisualStudio.Language.NavigateTo.Interfaces.DescriptionRun
Public Sub New (text As String, color As Color, bold As Boolean, italic As Boolean, underline As Boolean)

Paramètres

text
String

Texte de l’exécution.

color
Color

Couleur de l’exécution.

bold
Boolean

Si l’exécution doit être mise en gras.

italic
Boolean

Si l’exécution doit être en italique.

underline
Boolean

Si l’exécution doit être soulignée.

S’applique à