Skip to content
This repository has been archived by the owner on Aug 31, 2023. It is now read-only.

TyberiousG/SimpleConsoleControls-Deprecated-

Repository files navigation

SimpleConsoleControls

Simple Console Controls for .NET languages

SimpleConsoleControls (SCC) makes creating Command Line Interfaces simple and easy with any .NET language. Current functions and subroutines include:

  • Subroutine: Label( X [int], Y [int], LabelText [string], Optional FColor [ConsoleColor], Optional BColor [ConsoleColor])

    Creates a label within the window at the designated X and Y starting points.

  • Function: TextField( X [int], Y [int], Width [int])

    Creates a Fixed-Length Input Field starting at the designated X and Y points.

    Returns string value from user input.

  • Subroutine: Title( Y [int], Text [string])

    Creates a title label centered in the middle of the window.

  • Function: PasswordField( X [int], Y [int], Width [int], Optional Mask [string])

    Draws fixed-length masked input field in the main window at the designated starting X and Y points.

    Returns string from user password input.