Console.Title Свойство
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Возвращает или задает заголовок для отображения в строке заголовка консоли.
public:
static property System::String ^ Title { System::String ^ get(); void set(System::String ^ value); };
public static string Title { [System.Runtime.Versioning.SupportedOSPlatform("windows")] get; [System.Runtime.Versioning.UnsupportedOSPlatform("browser")] set; }
public static string Title { [System.Runtime.Versioning.SupportedOSPlatform("windows")] get; [System.Runtime.Versioning.UnsupportedOSPlatform("browser")] [System.Runtime.Versioning.UnsupportedOSPlatform("android")] [System.Runtime.Versioning.UnsupportedOSPlatform("ios")] [System.Runtime.Versioning.UnsupportedOSPlatform("tvos")] set; }
public static string Title { get; set; }
[<get: System.Runtime.Versioning.SupportedOSPlatform("windows")>]
[<set: System.Runtime.Versioning.UnsupportedOSPlatform("browser")>]
member this.Title : string with get, set
[<get: System.Runtime.Versioning.SupportedOSPlatform("windows")>]
[<set: System.Runtime.Versioning.UnsupportedOSPlatform("browser")>]
[<set: System.Runtime.Versioning.UnsupportedOSPlatform("android")>]
[<set: System.Runtime.Versioning.UnsupportedOSPlatform("ios")>]
[<set: System.Runtime.Versioning.UnsupportedOSPlatform("tvos")>]
member this.Title : string with get, set
member this.Title : string with get, set
Public Shared Property Title As String
Значение свойства
Строка для отображения в строке заголовка консоли. Максимальная длина строки заголовка — 24500 символов.
- Атрибуты
Исключения
В операции get длина полученного заголовка превышает 24 500 символов.
В операции set указанный заголовок длиннее 24500 символов.
Для операции set задан заголовок null
.
Ошибка ввода/вывода.
Операция получения вызывается в операционной системе, отличной от Windows.
Примеры
В этом примере показано Title свойство. В примере отображается текущее название окна операционной системы, ожидает нажатия клавиши, а затем отображается новое название.
// This example demonstrates the Console.Title property.
using namespace System;
int main()
{
Console::WriteLine( "The current console title is: \"{0}\"", Console::Title );
Console::WriteLine( " (Press any key to change the console title.)" );
Console::ReadKey( true );
Console::Title = "The title has changed!";
Console::WriteLine( "Note that the new console title is \"{0}\"\n"
" (Press any key to quit.)", Console::Title );
Console::ReadKey( true );
}
/*
This example produces the following results:
>myTitle
The current console title is: "Command Prompt - myTitle"
(Press any key to change the console title.)
Note that the new console title is "The title has changed!"
(Press any key to quit.)
*/
// This example demonstrates the Console.Title property.
using System;
class Sample
{
public static void Main()
{
Console.WriteLine("The current console title is: \"{0}\"",
Console.Title);
Console.WriteLine(" (Press any key to change the console title.)");
Console.ReadKey(true);
Console.Title = "The title has changed!";
Console.WriteLine("Note that the new console title is \"{0}\"\n" +
" (Press any key to quit.)", Console.Title);
Console.ReadKey(true);
}
}
/*
This example produces the following results:
>myTitle
The current console title is: "Command Prompt - myTitle"
(Press any key to change the console title.)
Note that the new console title is "The title has changed!"
(Press any key to quit.)
*/
// This example demonstrates the Console.Title property.
open System
printfn $"The current console title is: \"{Console.Title}\""
printfn " (Press any key to change the console title.)"
Console.ReadKey true |> ignore
Console.Title <- "The title has changed!"
printfn $"Note that the new console title is \"{Console.Title}\"\n (Press any key to quit.)"
Console.ReadKey true |> ignore
// This example produces the following results:
//
// > myTitle
// The current console title is: "Command Prompt - myTitle"
// (Press any key to change the console title.)
// Note that the new console title is "The title has changed!"
// (Press any key to quit.)
' This example demonstrates the Console.Title property.
Class Sample
Public Shared Sub Main()
Console.WriteLine("The current console title is: ""{0}""", Console.Title)
Console.WriteLine(" (Press any key to change the console title.)")
Console.ReadKey(True)
Console.Title = "The title has changed!"
Console.WriteLine("Note that the new console title is ""{0}""" & vbCrLf & _
" (Press any key to quit.)", Console.Title)
Console.ReadKey(True)
End Sub
End Class
'
'This example produces the following results:
'
'>myTitle
'The current console title is: "Command Prompt - myTitle"
' (Press any key to change the console title.)
'Note that the new console title is "The title has changed!"
' (Press any key to quit.)
'