IGLib
1.5
The IGLib base library for development of numerical, technical and business applications.
|
Summary description for ConsoleForm. More...
Public Types | |
enum | Styles { Styles.Normal, Styles.Error, Styles.Mark } |
Public Member Functions | |
ConsoleForm () | |
ConsoleForm (string msgtext) | |
Shows a fading message in a new thread, with message text equal to mshtext and without a title;. More... | |
ConsoleForm (string msgtext, int showtime) | |
Shows a fading message in a new thread, with message text equal to msgtext and with specified showing time in ms. More... | |
ConsoleForm (string msgtext, int showtime, double fadeportion) | |
Shows a fading message in a new thread, with message text equal to msgtext and with specified showing time in ms and fading time portion. More... | |
ConsoleForm (string title, string msgtext) | |
Shows the form in a new thread, with a title and with message text equal to msgtext. More... | |
ConsoleForm (string title, string msgtext, int showtime) | |
Shows a fading message in a new thread, with a title and with message text equal to msgtext, with specified showing time in ms. More... | |
ConsoleForm (string title, string msgtext, int showtime, double fadeportion) | |
Shows a fading message in a new thread, with a title and with message text equal to msgtext, with specified showing time in ms and fading time portion. More... | |
void | HideDialog () |
void | CloseDialog () |
void | ShowThread () |
Shows a fading message in a new thread. More... | |
void | ShowThread (string text) |
Shows a fading message in a new thread, with message text equal to mshtext and without a title;. More... | |
void | ShowThread (string msgtext, int showtime) |
Shows a fading message in a new thread, with message text equal to msgtext and with specified showing time in ms. More... | |
void | ShowThread (string msgtext, int showtime, double fadeportion) |
Shows a fading message in a new thread, with message text equal to msgtext and with specified showing time in ms and fading time portion. More... | |
void | ShowThread (string title, string text) |
Shows the form in a new thread, with a title and with message text equal to msgtext. More... | |
void | ShowThread (string title, string msgtext, int showtime) |
Shows a fading message in a new thread, with a title and with message text equal to msgtext, with specified showing time in ms. More... | |
void | ShowThread (string title, string msgtext, int showtime, double fadeportion) |
Shows a fading message in a new thread, with a title and with message text equal to msgtext, with specified showing time in ms and fading time portion. More... | |
void | SetNormalStyle () |
Sets normal style for console output. More... | |
void | SetErrorStyle () |
Sets Error Style for console output. More... | |
void | SetMarkStyle () |
Sets marking (emphasis) style for console output. More... | |
ConsoleForm () | |
Argument-less constructor, does not launch the window in a parallel thread. More... | |
ConsoleForm (string msgtext) | |
Shows a console consform in a new thread, with message text equal to mshtext and without a title;. More... | |
void | HideForm () |
void | CloseForm () |
Closes the consform by properly (i.e. thread-safe) calling the Close() and Dispose(). More... | |
void | Write (bool block, string str) |
void | Write (string str) |
void | WriteLine (bool block, string str) |
Writes a string to the output console and appends a newline character. More... | |
void | WriteLine (string str) |
void | Write (Char arg) |
void | Write (Boolean arg) |
void | Write (Char[] arg) |
void | Write (Decimal arg) |
void | Write (Double arg) |
void | Write (Int32 arg) |
void | Write (Int64 arg) |
void | Write (Object arg) |
void | Write (Single arg) |
void | Write (UInt32 arg) |
void | Write (UInt64 arg) |
void | Write (String arg, Object arg1) |
void | Write (String arg, Object[] arg1) |
void | Write (Char[] arg, Int32 arg1, Int32 arg2) |
void | Write (String arg, Object arg1, Object arg2) |
void | Write (String arg, Object arg1, Object arg2, Object arg3) |
void | WriteLine (Char arg) |
void | WriteLine (Boolean arg) |
void | WriteLine (Char[] arg) |
void | WriteLine (Decimal arg) |
void | WriteLine (Double arg) |
void | WriteLine (Int32 arg) |
void | WriteLine (Int64 arg) |
void | WriteLine (Object arg) |
void | WriteLine (Single arg) |
void | WriteLine (UInt32 arg) |
void | WriteLine (UInt64 arg) |
void | WriteLine (String arg, Object arg1) |
void | WriteLine (String arg, Object[] arg1) |
void | WriteLine (Char[] arg, Int32 arg1, Int32 arg2) |
void | WriteLine (String arg, Object arg1, Object arg2) |
void | WriteLine (String arg, Object arg1, Object arg2, Object arg3) |
void | ReportErrorBas (ReporterBase reporter, ReportType messagelevel, string errorlocation, string errormessage) |
void | ReserveReportErrorBas (ReporterBase reporter, ReportType messagelevel, string location, string message, Exception ex, Exception ex1) |
void | ReserveReportError (string errorstr) |
virtual void | Report (ReportType messagetype, string location, string message, Exception ex) |
Basic reporting method (overloaded). Launches an error report, a warning report or s kind of report/message. Supplemental data (such as objects necessary to launch visualize the report or operation typeflags) are obtained from the class' instance. More... | |
void | Report (ReportType messagetype, string message, Exception ex) |
Launches a report. Predominantly for error and warning reports. More... | |
void | Report (ReportType messagetype, Exception ex, string location) |
Launches a report. Predominantly for error and warning reports. More... | |
void | Report (ReportType messagetype, Exception ex) |
Launches a report. Predominantly for error and warning reports. More... | |
void | Report (ReportType messagetype, string location, string message) |
Launches a report. More... | |
void | Report (ReportType messagetype, string message) |
Launches a report. More... | |
virtual void | ReportError (string location, string message, Exception ex) |
Basic error reporting method (overloaded). Supplemental data (such as objects necessary to launch visualize the report or operation typeflags) are obtained from the class' instance. More... | |
void | ReportError (string message, Exception ex) |
Launches an error report. More... | |
void | ReportError (Exception ex, string location) |
Launches an error report. More... | |
void | ReportError (Exception ex) |
Launches an error report. Predominantly for error and warning reports. More... | |
void | ReportError (string location, string message) |
Launches an error report. More... | |
void | ReportError (string message) |
Launches an error report. More... | |
virtual void | ReportWarning (string location, string message, Exception ex) |
Basic warning reporting method (overloaded). Supplemental data (such as objects necessary to launch visualize the report or operation typeflags) are obtained from the class' instance. More... | |
void | ReportWarning (string message, Exception ex) |
Launches a warning report. More... | |
void | ReportWarning (Exception ex, string location) |
Launches a warning report. More... | |
void | ReportWarning (Exception ex) |
Launches a warning report. Predominantly for error and warning reports. More... | |
void | ReportWarning (string location, string message) |
Launches a warning report. More... | |
void | ReportWarning (string message) |
Launches a warning report. More... | |
void | ReportInfo (Exception ex) |
Launches an info. More... | |
void | ReportInfo (string location, string message) |
Launches an info. More... | |
void | ReportInfo (string message) |
Launches an info. More... | |
void | ReportError0 (string errorstr) |
ConsoleForm utility for reporting errors (not global). More... | |
void | ReportError0 (Exception e) |
Reports an error (including logging, etc., dependent on the current settings). More... | |
void | ReportError0 (Exception e, string additional) |
void | HideInput () |
void | ShowInput () |
string | ReadLine () |
Reads a single line string from the input console and returns it. More... | |
string | ReadLine (string Message) |
void | ReadString (ref string str) |
void | ReadString (ref string str, string Message) |
int | Read () |
Reads a single character from the input console and returns it as integer. More... | |
int | Read (string Message) |
double | ReadDouble (ref double Value) |
double | ReadDouble (ref double Value, string Message) |
double | ReadDouble () |
Reads a floating point number from the input console and returns it. More... | |
double | ReadDouble (string Message) |
long | ReadLong (ref long Value) |
long | ReadLong (ref long Value, string Message) |
long | ReadLong () |
Reads a floating point number from the input console and returns it. More... | |
long | ReadLong (string Message) |
void | ShowThread () |
Shows a fading message in a new thread. More... | |
void | ShowThread (string title) |
Shows a fading message in a new thread, with message text equal to mshtext and without a title;. More... | |
Static Public Member Functions | |
static void | Example () |
Public Attributes | |
string | MsgTitle = null |
Color | BackGroundColor = Color.LightYellow |
bool | IsClosable = true |
bool | WriteInput = true |
If false then the consform can not be closed or dispoded. More... | |
string | Title = "Console" |
Color | NormalOutColor = Color.Blue |
Protected Attributes | |
string | OutBuf =null |
bool | OutputStarted =false |
ReporterBase | _Reporter = null |
Properties | |
int | ShowTime [get, set] |
double | FadingTimePortion [get, set] |
bool | IsBackground [get, set] |
Color | OutBackColor [get, set] |
Output console background color. More... | |
Color | OutForeColor [get, set] |
Output console foreground color. More... | |
Color | OutSelectionColor [get, set] |
Output console foreground color. More... | |
Styles | Style [get, set] |
Defines the output style of the console. More... | |
Color | InBackColor [get, set] |
Input console background color. More... | |
Color | InForeColor [get, set] |
Input console foreground color. More... | |
ReporterBase | Reporter [get] |
Gets the reporter used by the current console consform for launching error and warning reports, notices, etc. More... | |
Private Member Functions | |
void | baseFadeMessage () |
Required designer variable. More... | |
void | InitializeComponent () |
Required method for Designer support - do not modify the contents of this method with the code editor. More... | |
void | ManipulationThreadFunc () |
void | FormThreadFunc () |
void | ConsoleForm_Load (object sender, System.EventArgs e) |
void | CancelBtn_Click (object sender, EventArgs e) |
void | FadeMessage_MouseClick (object sender, MouseEventArgs e) |
void | UpdateOutSettings () |
void | UpdateSettings () |
Updates all settings for the console consform on the consform'result thread. More... | |
void | baseConsoleForm () |
Required designer variable. More... | |
void | InitializeComponent () |
Required method for Designer support - do not modify the contents of this method with the code editor. More... | |
void | FormThreadFunc () |
Shows the window in a separate thread. More... | |
void | ConsoleForm_Load (object sender, System.EventArgs args) |
void | ConsoleForm_Dispose (object sender, System.EventArgs e) |
void | ConsoleForm_FormClosing (object sender, FormClosingEventArgs e) |
void | CloseBtn_Click (object sender, EventArgs e) |
void | HideBtn_Click (object sender, EventArgs e) |
void | WriteOutput () |
Appends output buffer to the output console. More... | |
void | ReserveReportError (Exception e, string additional) |
void | ReserveReportError0 (string errorstr) |
void | ReserveReportError0 (Exception e) |
void | ReserveReportError0 (Exception e, string additional) |
void | PrepareForReading () |
void | FinalizeReading () |
void | WaitResult () |
void | RunInputConfirmationDelegate () |
void | InputConfirm_Read () |
void | InputConfirm_ReadDouble () |
void | InputConfirm_ReadLong () |
void | InputChk_CheckedChanged (object sender, EventArgs e) |
void | ConfirmInputBtn_Click (object sender, EventArgs e) |
void | InBox_PreviewKeyDown (object sender, PreviewKeyDownEventArgs e) |
void | InBox_KeyUp (object sender, KeyEventArgs e) |
void | InBox_KeyPress (object sender, KeyPressEventArgs e) |
void | chkWrap_CheckedChanged (object sender, EventArgs e) |
Private Attributes | |
System.Windows.Forms.Button | CancelBtn |
Panel | TitlePanel |
Panel | MessagePanel |
Panel | ControlPanel |
Label | TitleLbl |
Label | MessageLbl |
RichTextBox | OutputRichText |
Panel | OutputPanel |
Label | StatusLbl |
int | vShowTime = defaultShowtime |
double | vFadingTimePortion = defaultFadingTimePortion |
string | MsgText = null |
Thread | formthread = null |
Thread | manipulationthread = null |
Color | FadeColor = Color.Blue |
bool | bgthread = true |
If true then Input messages are repeated in the output console. More... | |
object | InputLock = new object() |
object | OutputLock = new object() |
Color | OBg = Color.White |
Color | OFg = Color.Blue |
Color | OSelFg = Color.Blue |
Color | IBg = Color.White |
Color | IFg = Color.Violet |
Color | ILblNormalBg =Color.Gray |
Color | ILblNormalFg =Color.Black |
Color | ILblActiveBg =Color.Yellow |
Color | ILblActiveFg =Color.Blue |
Color | ILblErrorBg =Color.Red |
Color | ILblErrorFg =Color.Blue |
Color | ErrorOutColor = Color.Red |
Color | MarkOutColor = Color.Violet |
CheckBox | chkWrap |
Styles | OStyle = Styles.Normal |
System.Windows.Forms.Button | HideBtn |
Panel | OutputOuterPnl |
RichTextBox | OutBox |
Label | OutputLbl |
Panel | InputPnl |
RichTextBox | InBox |
Label | InputLbl |
Label | InputMsgLbl |
Button | ConfirmInputBtn |
CheckBox | InputChk |
Button | button1 |
bool | OutputEnded =false |
int | RecCountWrite = 0 |
object | errorlock = new object() |
int | reccounterror = 0 |
int | RecCountError = 0 |
object | ErrorLock00 = new object() |
string | InputResultString =null |
string | InputMessage =null |
bool | ReadStarted =false |
bool | ReadFinished =false |
bool | MultiLineInput = false |
bool | SingleCharacterInput = false |
bool | DeleteLastNewline = false |
bool | SelectInput =false |
int | KeyValue = 0 |
Keys | KeyData = Keys.None |
Keys | KeyCode =Keys.None |
IFormatProvider | FormatProvider = System.Globalization.CultureInfo.CreateSpecificCulture("") |
VoidDelegate | InputConfirmDelegate |
Static Private Attributes | |
static int | defaultShowtime = 3000 |
static double | defaultFadingTimePortion = 0.3 |
Summary description for ConsoleForm.
Console replacement.
|
inline |
|
inline |
Shows a fading message in a new thread, with message text equal to mshtext and without a title;.
|
inline |
Shows a fading message in a new thread, with message text equal to msgtext and with specified showing time in ms.
|
inline |
Shows a fading message in a new thread, with message text equal to msgtext and with specified showing time in ms and fading time portion.
|
inline |
Shows the form in a new thread, with a title and with message text equal to msgtext.
|
inline |
Shows a fading message in a new thread, with a title and with message text equal to msgtext, with specified showing time in ms.
|
inline |
Shows a fading message in a new thread, with a title and with message text equal to msgtext, with specified showing time in ms and fading time portion.
|
inline |
Argument-less constructor, does not launch the window in a parallel thread.
|
inline |
Shows a console consform in a new thread, with message text equal to mshtext and without a title;.
|
inlineprivate |
Required designer variable.
|
inlineprivate |
Required method for Designer support - do not modify the contents of this method with the code editor.
|
inlineprivate |
|
inlineprivate |
References IG.Forms.IGForm.SetBackColorRec().
|
inlineprivate |
|
inlineprivate |
|
inline |
|
inline |
|
inline |
Shows a fading message in a new thread.
this.ShowDialog();
|
inline |
Shows a fading message in a new thread, with message text equal to mshtext and without a title;.
|
inline |
Shows a fading message in a new thread, with message text equal to msgtext and with specified showing time in ms.
|
inline |
Shows a fading message in a new thread, with message text equal to msgtext and with specified showing time in ms and fading time portion.
|
inline |
Shows the form in a new thread, with a title and with message text equal to msgtext.
|
inline |
Shows a fading message in a new thread, with a title and with message text equal to msgtext, with specified showing time in ms.
|
inline |
Shows a fading message in a new thread, with a title and with message text equal to msgtext, with specified showing time in ms and fading time portion.
|
inlineprivate |
|
inline |
Sets normal style for console output.
References IG.Forms.UtilForms.ReportError().
|
inline |
Sets Error Style for console output.
References IG.Forms.UtilForms.ReportError().
|
inline |
Sets marking (emphasis) style for console output.
References IG.Forms.UtilForms.ReportError().
|
inlineprivate |
Updates only those settings of the console consform that influence output operation, in the consform'result thread. This is performed separately from UpdateSettings() to enable faster execution of this vital update.
References IG.Forms.VoidDelegate().
|
inlineprivate |
Updates all settings for the console consform on the consform'result thread.
References IG.Forms.VoidDelegate().
|
inlineprivate |
Required designer variable.
Common initialization part called from all constructors.
|
inlineprivate |
Required method for Designer support - do not modify the contents of this method with the code editor.
|
inlineprivate |
Shows the window in a separate thread.
References IG.Forms.UtilForms.ReportError().
|
inlineprivate |
References IG.Forms.UtilForms.ReportError().
|
inlineprivate |
References IG.Forms.UtilForms.ReportError().
|
inlineprivate |
References IG.Forms.UtilForms.ReportError().
|
inlineprivate |
References IG.Forms.UtilForms.ReportError().
|
inlineprivate |
References IG.Forms.UtilForms.ReportError().
|
inline |
References IG.Forms.UtilForms.ReportError().
|
inline |
Closes the consform by properly (i.e. thread-safe) calling the Close() and Dispose().
References IG.Forms.UtilForms.ReportError(), and IG.Forms.VoidDelegate().
|
inlineprivate |
Appends output buffer to the output console.
References IG.Forms.UtilForms.ReportError(), and IG.Forms.VoidDelegate().
|
inline |
Writes a string to the output console. If block=true, then it blocks until the string is actually written.
Referenced by IG.Forms.ReporterForms.DefaultReserveReportErrorForms(), and IG.Forms.UtilForms.Write().
|
inline |
References IG.Forms.ConsoleForm.Write().
Referenced by IG.Forms.ConsoleForm.Write().
|
inline |
Writes a string to the output console and appends a newline character.
Referenced by IG.Forms.UtilForms.ConsoleExample(), and IG.Forms.UtilForms.WriteLine().
|
inline |
References IG.Forms.ConsoleForm.WriteLine().
Referenced by IG.Forms.ConsoleForm.WriteLine().
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inlineprivate |
|
inline |
|
inlinevirtual |
Basic reporting method (overloaded). Launches an error report, a warning report or s kind of report/message. Supplemental data (such as objects necessary to launch visualize the report or operation typeflags) are obtained from the class' instance.
messagetype | The type of the report (e.g. Error, Warning, etc.). |
location | User-provided description of error location. |
message | User-provided description of error. |
ex | Exception thrown when error occurred. |
Referenced by IG.Forms.ReporterForms.DefaultReport_ConsoleForm().
|
inline |
Launches a report. Predominantly for error and warning reports.
messagetype | Level of the message (Error, Warnind, etc.). |
message | User-provided description of error. |
ex | Exception that is the cause for launching the report (and from which additional information is extracted). |
|
inline |
Launches a report. Predominantly for error and warning reports.
messagetype | Level of the message (Error, Warnind, etc.). |
ex | Exception that is the cause for launching the report (and from which additional information is extracted). |
location | User-provided description of error location. |
|
inline |
Launches a report. Predominantly for error and warning reports.
messagetype | Level of the message (Error, Warnind, etc.). |
ex | Exception that is the cause for launching the report (and from which additional information is extracted). |
|
inline |
Launches a report.
messagetype | Level of the message (Error, Warnind, etc.). |
location | User provided description of the location where report was triggered. |
message | User provided message included in the report. |
|
inline |
Launches a report.
messagetype | Level of the message (Error, Warnind, etc.). |
message | User provided message included in the report. |
|
inlinevirtual |
Basic error reporting method (overloaded). Supplemental data (such as objects necessary to launch visualize the report or operation typeflags) are obtained from the class' instance.
location | User-provided description of error location. |
message | User-provided description of error. |
ex | Exception thrown when error occurred. |
|
inline |
Launches an error report.
message | User-provided description of error. |
ex | Exception that is the cause for launching the report (and from which additional information is extracted). |
|
inline |
Launches an error report.
ex | Exception that is the cause for launching the report (and from which additional information is extracted). |
location | User-provided description of error location. |
|
inline |
Launches an error report. Predominantly for error and warning reports.
ex | Exception that is the cause for launching the report (and from which additional information is extracted). |
|
inline |
Launches an error report.
location | User provided description of the location where report was triggered. |
message | User provided message included in the report. |
|
inline |
Launches an error report.
message | User provided message included in the report. |
|
inlinevirtual |
Basic warning reporting method (overloaded). Supplemental data (such as objects necessary to launch visualize the report or operation typeflags) are obtained from the class' instance.
location | User-provided description of error location. |
message | User-provided description of error. |
ex | Exception thrown when error occurred. |
|
inline |
Launches a warning report.
message | User-provided description of error. |
ex | Exception that is the cause for launching the report (and from which additional information is extracted). |
|
inline |
Launches a warning report.
ex | Exception that is the cause for launching the report (and from which additional information is extracted). |
location | User-provided description of error location. |
|
inline |
Launches a warning report. Predominantly for error and warning reports.
ex | Exception that is the cause for launching the report (and from which additional information is extracted). |
|
inline |
Launches a warning report.
location | User provided description of the location where report was triggered. |
message | User provided message included in the report. |
|
inline |
Launches a warning report.
message | User provided message included in the report. |
|
inline |
Launches an info.
ex | Exception that is the cause for launching the report (and from which additional information is extracted). |
|
inline |
Launches an info.
location | User provided description of the location where report was triggered. |
message | User provided message included in the report. |
|
inline |
Launches an info.
message | User provided message included in the report. |
|
inline |
ConsoleForm utility for reporting errors (not global).
Referenced by IG.Forms.UtilForms.ReportError().
|
inline |
Reports an error (including logging, etc., dependent on the current settings).
References IG.Forms.UtilForms.GetErorString().
|
inline |
Reports an error (including logging, etc., dependent on the current settings). An additonal string is appended to error report.
References IG.Forms.UtilForms.GetErorString().
|
inlineprivate |
|
inlineprivate |
References IG.Forms.UtilForms.GetErorString().
|
inlineprivate |
References IG.Forms.UtilForms.GetErorString().
|
inline |
References IG.Forms.UtilForms.ReportError(), and IG.Forms.VoidDelegate().
|
inline |
References IG.Forms.UtilForms.ReportError(), and IG.Forms.VoidDelegate().
|
inlineprivate |
References IG.Forms.UtilForms.ReportError(), and IG.Forms.VoidDelegate().
|
inlineprivate |
References IG.Forms.UtilForms.ReportError(), and IG.Forms.VoidDelegate().
|
inlineprivate |
Waits until result is available (indicating by the flag ReadFinished, which must be set by the ReadDelegate).
|
inlineprivate |
Runs specific function for handling user input consform input console, which grabs the input, eventually validates it, and notifies the caller that reading is finished when validation succeeds.
References IG.Forms.UtilForms.ReportError().
|
inlineprivate |
This function should be called as event handler for input events (such as <Enter> pressed in the input console or button "Confirm Input" pressed).
References IG.Forms.UtilForms.ReportError().
|
inline |
Reads a single line string from the input console and returns it.
Referenced by IG.Forms.UtilForms.ConsoleExample2().
|
inline |
Reads a single line string from the input console and returns it. If Message!=Null then Message is written above the input consform before reading.
References IG.Forms.UtilForms.ReportError(), and IG.Forms.VoidDelegate().
|
inline |
|
inline |
Reads a multiple line string from the input console and returns it in OutStr. If Message!=Null then Message is written above the input consform before reading.
References IG.Forms.UtilForms.ReportError(), and IG.Forms.VoidDelegate().
|
inline |
Reads a single character from the input console and returns it as integer.
|
inline |
Reads a single character from the input console and returns it as integer. If Message!=null then it is written above the input consform before reading starts.
References IG.Forms.UtilForms.ReportError(), and IG.Forms.VoidDelegate().
|
inlineprivate |
References IG.Forms.UtilForms.ReportError().
|
inline |
Reads a floating point number from the input console and returns it in Value. Initial value of the number is set to Value prior to reading.
|
inline |
Reads a floating point number from the input console and returns it in Value. If Message!=null then it is written above the input consform before reading starts. Initial value of the number is set to Value prior to reading.
References IG.Forms.UtilForms.ReportError(), and IG.Forms.VoidDelegate().
|
inline |
Reads a floating point number from the input console and returns it.
|
inline |
Reads a floating point number from the input console and returns it. If Message!=null then it is written above the input consform before reading starts.
|
inlineprivate |
This function should be called as event handler for input events (such as <Enter> pressed in the input console or button "Confirm Input" pressed), for confirmation of floating point numbers input.
References IG.Forms.UtilForms.ReportError().
|
inline |
Reads a floating point number from the input console and returns it in Value. Initial value of the number is set to Value prior to reading.
|
inline |
Reads a floating point number from the input console and returns it in Value. If Message!=null then it is written above the input consform before reading starts. Initial value of the number is set to Value prior to reading.
References IG.Forms.UtilForms.ReportError(), and IG.Forms.VoidDelegate().
|
inline |
Reads a floating point number from the input console and returns it.
|
inline |
Reads a floating point number from the input console and returns it. If Message!=null then it is written above the input consform before reading starts.
|
inline |
Shows a fading message in a new thread.
|
inline |
Shows a fading message in a new thread, with message text equal to mshtext and without a title;.
|
inlineprivate |
References IG.Forms.UtilForms.ReportError().
|
inlineprivate |
References IG.Forms.UtilForms.ReportError().
|
inlineprivate |
References IG.Forms.UtilForms.ReportError().
|
inlineprivate |
References IG.Forms.UtilForms.ReportError().
|
inlineprivate |
References IG.Forms.UtilForms.ReportError().
|
inlineprivate |
|
inlinestatic |
References IG.Forms.UtilForms.ReportError().
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |
|
staticprivate |
|
staticprivate |
|
private |
|
private |
string IG.Forms.ConsoleForm.MsgTitle = null |
|
private |
|
private |
|
private |
Color IG.Forms.ConsoleForm.BackGroundColor = Color.LightYellow |
|
private |
bool IG.Forms.ConsoleForm.IsClosable = true |
bool IG.Forms.ConsoleForm.WriteInput = true |
If false then the consform can not be closed or dispoded.
|
private |
If true then Input messages are repeated in the output console.
|
private |
|
private |
string IG.Forms.ConsoleForm.Title = "Console" |
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |
Color IG.Forms.ConsoleForm.NormalOutColor = Color.Blue |
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |
|
protected |
|
protected |
|
private |
|
private |
|
private |
|
private |
|
protected |
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |
|
getset |
|
getset |
|
getset |
|
getset |
Output console background color.
|
getset |
Output console foreground color.
|
getset |
Output console foreground color.
|
getset |
Defines the output style of the console.
|
getset |
Input console background color.
|
getset |
Input console foreground color.
|
get |
Gets the reporter used by the current console consform for launching error and warning reports, notices, etc.