Console.Title 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
콘솔 제목 표시줄에 표시할 제목을 가져오거나 설정합니다.
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자입니다.
- 특성
예외
가져오기 작업에서 검색된 제목이 24500자 보다 깁니다.
설정 작업에서 검색된 제목이 24500자 보다 깁니다.
설정 작업에서 지정된 제목이 null
입니다.
I/O 오류가 발생했습니다.
가져오기 작업은 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.)
'