UtilConsoleConsoleTextBlinkMultiline(Point, String, Int32, Int32) Method
Blinks the specified text for the specified amount of times on the current attached console window.
You should call this function instead of
ConsoleTextBlink(Point, Int32, Int32) when
the string to blink exceeds the
BufferWidth buffer width.
Namespace: DevCase.Core.Application.ConsoleAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
No code example is currently available or this language may not be supported.
- position Point
-
A Point that indicates the start position of the text to blink.
X specifies the column, Y the row.
- str String
-
The string to blink.
- interval Int32
-
The blink interval, in milliseconds.
- count Int32
-
The amount of times to blink the text.
CancellationTokenSource
A
CancellationTokenSource object which you can use it to stop the blink at any time.
This is a code example.
No code example is currently available or this language may not be supported.
Dim pos As New Point(10, 2)
Dim str As String = "Hello World!"
Console.SetCursorPosition(pos.X, pos.Y)
Console.Write(str)
' Start blinking the text written.
Dim interval As Integer = 500
Dim count As Integer = 10
ConsoleTextBlink(pos, str, interval, count)
' Terminate program.
Console.ReadKey(intercept:=False)
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.