Skip to content

Latest commit

 

History

History
65 lines (41 loc) · 1.87 KB

File metadata and controls

65 lines (41 loc) · 1.87 KB

ConsolePlus

IStringDash Interface

Represents a banner that can be customized and displayed.

public interface IStringDash

Methods

IStringDash.Border(DashOptions) Method

Set border options for the string dash.

ConsolePlusLibrary.IStringDash Border(ConsolePlusLibrary.DashOptions dashOptions);

Parameters

dashOptions DashOptions

The DashOptions to apply.

Returns

IStringDash
The current IStringDash instance for method chaining.

IStringDash.Extralines(int) Method

Sets the number of extra lines to be added to the string dash.

ConsolePlusLibrary.IStringDash Extralines(int value);

Parameters

value System.Int32

The number of extra lines to add.

Returns

IStringDash
The current IStringDash instance for method chaining.

IStringDash.Show() Method

Displays the string dash widget.

void Show();