Constructor AnsiControlSequence
- Namespace
- Microlithix.Text.Ansi.Element
- Assembly
- AnsiParser.dll
AnsiControlSequence(string, IList<Parameter>)
Creates a new AnsiControlSequence instance from a function string and a list of parameters.
public AnsiControlSequence(string function, IList<Parameter> parameters)
Parameters
function
stringSpecifies the control sequence function to be performed. This string must consist of zero or more optional characters in the range 0x20-0x2f, followed by exactly one character in the range 0x40-0x7e. See ControlFunction for a standardardized list of control sequence functions.
parameters
IList<Parameter>A list of zero or more Parameter instances.
AnsiControlSequence(string, params Parameter[])
Creates a new AnsiControlSequence instance from a function string and variable number of parameters.
public AnsiControlSequence(string function, params Parameter[] parameters)
Parameters
function
stringSpecifies the control sequence function to be performed. This string must consist of zero or more optional characters in the range 0x20-0x2f, followed by exactly one character in the range 0x40-0x7e. See ControlFunction for a standardardized list of control sequence functions.
parameters
Parameter[]A variable number of parameters, each of type Parameter.