UtilConsoleConsoleTextBlinkMultiline(Point, String, TimeSpan) 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.

Definition

Namespace: DevCase.Core.Application.Console
Assembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public static CancellationTokenSource ConsoleTextBlinkMultiline(
	Point position,
	string str,
	TimeSpan interval
)

Parameters

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  TimeSpan
The blink interval.

Return Value

CancellationTokenSource
A CancellationTokenSource object which you can use it to stop the blink at any time.

Example

This is a code example.
C#
No code example is currently available or this language may not be supported.

See Also