UtilConsoleConsoleTextBlink(Point, Int32, TimeSpan) Method

Blinks the specified text for the specified amount of times on the current attached console window.

The string must be smaller than the current console width buffer, or the blink effect will get buggy.

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 ConsoleTextBlink(
	Point position,
	int length,
	TimeSpan interval
)

Parameters

position  Point
A Point that indicates the start position of the text to blink.

X specifies the column, Y the row.

length  Int32
The length of the text (or cells) 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