Search Results for

    Show / Hide Table of Contents

    Class InfoBoxProgressColor

    Info box writer with progress and color support

    Inheritance
    object
    InfoBoxProgressColor
    Namespace: Terminaux.Inputs.Styles.Infobox
    Assembly: Terminaux.dll
    Syntax
    public static class InfoBoxProgressColor

    Methods

    | Edit this page View Source

    WriteInfoBoxProgress(double, string, params object[])

    Writes the progress info box

    Declaration
    public static void WriteInfoBoxProgress(double progress, string text, params object[] vars)
    Parameters
    Type Name Description
    double progress

    Progress percentage from 0 to 100

    string text

    Text to be written.

    object[] vars

    Variables to format the message before it's written.

    | Edit this page View Source

    WriteInfoBoxProgress(double, string, InfoBoxSettings, params object[])

    Writes the progress info box

    Declaration
    public static void WriteInfoBoxProgress(double progress, string text, InfoBoxSettings settings, params object[] vars)
    Parameters
    Type Name Description
    double progress

    Progress percentage from 0 to 100

    string text

    Text to be written.

    InfoBoxSettings settings

    Infobox settings to use

    object[] vars

    Variables to format the message before it's written.

    | Edit this page View Source

    WriteInfoBoxProgress(double, string, BorderSettings, params object[])

    Writes the info box plainly

    Declaration
    [Obsolete("This legacy function is to be removed from the final release of Terminaux 7.0. While you can use this in Beta 3, please move all settings to InfoBoxSettings. This is done to clean up the legacy codebase.")]
    public static void WriteInfoBoxProgress(double progress, string text, BorderSettings settings, params object[] vars)
    Parameters
    Type Name Description
    double progress

    Progress percentage from 0 to 100

    string text

    Text to be written.

    BorderSettings settings

    Border settings to use

    object[] vars

    Variables to format the message before it's written.

    | Edit this page View Source

    WriteInfoBoxProgress(string, double, string, params object[])

    Writes the info box plainly

    Declaration
    [Obsolete("This legacy function is to be removed from the final release of Terminaux 7.0. While you can use this in Beta 3, please move all settings to InfoBoxSettings. This is done to clean up the legacy codebase.")]
    public static void WriteInfoBoxProgress(string title, double progress, string text, params object[] vars)
    Parameters
    Type Name Description
    string title

    Title to be written

    double progress

    Progress percentage from 0 to 100

    string text

    Text to be written.

    object[] vars

    Variables to format the message before it's written.

    | Edit this page View Source

    WriteInfoBoxProgress(string, double, string, BorderSettings, params object[])

    Writes the info box plainly

    Declaration
    [Obsolete("This legacy function is to be removed from the final release of Terminaux 7.0. While you can use this in Beta 3, please move all settings to InfoBoxSettings. This is done to clean up the legacy codebase.")]
    public static void WriteInfoBoxProgress(string title, double progress, string text, BorderSettings settings, params object[] vars)
    Parameters
    Type Name Description
    string title

    Title to be written

    double progress

    Progress percentage from 0 to 100

    string text

    Text to be written.

    BorderSettings settings

    Border settings to use

    object[] vars

    Variables to format the message before it's written.

    | Edit this page View Source

    WriteInfoBoxProgressColor(double, string, Color, params object[])

    Writes the info box plainly

    Declaration
    [Obsolete("This legacy function is to be removed from the final release of Terminaux 7.0. While you can use this in Beta 3, please move all settings to InfoBoxSettings. This is done to clean up the legacy codebase.")]
    public static void WriteInfoBoxProgressColor(double progress, string text, Color InfoBoxProgressColor, params object[] vars)
    Parameters
    Type Name Description
    double progress

    Progress percentage from 0 to 100

    string text

    Text to be written.

    Color InfoBoxProgressColor

    InfoBoxProgress color

    object[] vars

    Variables to format the message before it's written.

    | Edit this page View Source

    WriteInfoBoxProgressColor(double, string, BorderSettings, Color, params object[])

    Writes the info box plainly

    Declaration
    [Obsolete("This legacy function is to be removed from the final release of Terminaux 7.0. While you can use this in Beta 3, please move all settings to InfoBoxSettings. This is done to clean up the legacy codebase.")]
    public static void WriteInfoBoxProgressColor(double progress, string text, BorderSettings settings, Color InfoBoxProgressColor, params object[] vars)
    Parameters
    Type Name Description
    double progress

    Progress percentage from 0 to 100

    string text

    Text to be written.

    BorderSettings settings

    Border settings to use

    Color InfoBoxProgressColor

    InfoBoxProgress color

    object[] vars

    Variables to format the message before it's written.

    | Edit this page View Source

    WriteInfoBoxProgressColor(string, double, string, Color, params object[])

    Writes the info box plainly

    Declaration
    [Obsolete("This legacy function is to be removed from the final release of Terminaux 7.0. While you can use this in Beta 3, please move all settings to InfoBoxSettings. This is done to clean up the legacy codebase.")]
    public static void WriteInfoBoxProgressColor(string title, double progress, string text, Color InfoBoxTitledProgressColor, params object[] vars)
    Parameters
    Type Name Description
    string title

    Title to be written

    double progress

    Progress percentage from 0 to 100

    string text

    Text to be written.

    Color InfoBoxTitledProgressColor

    InfoBoxTitledProgress color

    object[] vars

    Variables to format the message before it's written.

    | Edit this page View Source

    WriteInfoBoxProgressColor(string, double, string, BorderSettings, Color, params object[])

    Writes the info box plainly

    Declaration
    [Obsolete("This legacy function is to be removed from the final release of Terminaux 7.0. While you can use this in Beta 3, please move all settings to InfoBoxSettings. This is done to clean up the legacy codebase.")]
    public static void WriteInfoBoxProgressColor(string title, double progress, string text, BorderSettings settings, Color InfoBoxTitledProgressColor, params object[] vars)
    Parameters
    Type Name Description
    string title

    Title to be written

    double progress

    Progress percentage from 0 to 100

    string text

    Text to be written.

    BorderSettings settings

    Border settings to use

    Color InfoBoxTitledProgressColor

    InfoBoxTitledProgress color

    object[] vars

    Variables to format the message before it's written.

    | Edit this page View Source

    WriteInfoBoxProgressColorBack(double, string, Color, Color, params object[])

    Writes the info box plainly

    Declaration
    [Obsolete("This legacy function is to be removed from the final release of Terminaux 7.0. While you can use this in Beta 3, please move all settings to InfoBoxSettings. This is done to clean up the legacy codebase.")]
    public static void WriteInfoBoxProgressColorBack(double progress, string text, Color InfoBoxProgressColor, Color BackgroundColor, params object[] vars)
    Parameters
    Type Name Description
    double progress

    Progress percentage from 0 to 100

    string text

    Text to be written.

    Color InfoBoxProgressColor

    InfoBoxProgress color

    Color BackgroundColor

    InfoBoxProgress background color

    object[] vars

    Variables to format the message before it's written.

    | Edit this page View Source

    WriteInfoBoxProgressColorBack(double, string, BorderSettings, Color, Color, params object[])

    Writes the info box plainly

    Declaration
    [Obsolete("This legacy function is to be removed from the final release of Terminaux 7.0. While you can use this in Beta 3, please move all settings to InfoBoxSettings. This is done to clean up the legacy codebase.")]
    public static void WriteInfoBoxProgressColorBack(double progress, string text, BorderSettings settings, Color InfoBoxProgressColor, Color BackgroundColor, params object[] vars)
    Parameters
    Type Name Description
    double progress

    Progress percentage from 0 to 100

    string text

    Text to be written.

    BorderSettings settings

    Border settings to use

    Color InfoBoxProgressColor

    InfoBoxProgress color

    Color BackgroundColor

    InfoBoxProgress background color

    object[] vars

    Variables to format the message before it's written.

    | Edit this page View Source

    WriteInfoBoxProgressColorBack(string, double, string, Color, Color, params object[])

    Writes the info box plainly

    Declaration
    [Obsolete("This legacy function is to be removed from the final release of Terminaux 7.0. While you can use this in Beta 3, please move all settings to InfoBoxSettings. This is done to clean up the legacy codebase.")]
    public static void WriteInfoBoxProgressColorBack(string title, double progress, string text, Color InfoBoxTitledProgressColor, Color BackgroundColor, params object[] vars)
    Parameters
    Type Name Description
    string title

    Title to be written

    double progress

    Progress percentage from 0 to 100

    string text

    Text to be written.

    Color InfoBoxTitledProgressColor

    InfoBoxTitledProgress color

    Color BackgroundColor

    InfoBoxTitledProgress background color

    object[] vars

    Variables to format the message before it's written.

    | Edit this page View Source

    WriteInfoBoxProgressColorBack(string, double, string, BorderSettings, Color, Color, params object[])

    Writes the info box plainly

    Declaration
    [Obsolete("This legacy function is to be removed from the final release of Terminaux 7.0. While you can use this in Beta 3, please move all settings to InfoBoxSettings. This is done to clean up the legacy codebase.")]
    public static void WriteInfoBoxProgressColorBack(string title, double progress, string text, BorderSettings settings, Color InfoBoxTitledProgressColor, Color BackgroundColor, params object[] vars)
    Parameters
    Type Name Description
    string title

    Title to be written

    double progress

    Progress percentage from 0 to 100

    string text

    Text to be written.

    BorderSettings settings

    Border settings to use

    Color InfoBoxTitledProgressColor

    InfoBoxTitledProgress color

    Color BackgroundColor

    InfoBoxTitledProgress background color

    object[] vars

    Variables to format the message before it's written.

    | Edit this page View Source

    WriteInfoBoxProgressPlain(double, string, params object[])

    Writes the info box plainly

    Declaration
    [Obsolete("This legacy function is to be removed from the final release of Terminaux 7.0. While you can use this in Beta 3, please move all settings to InfoBoxSettings. This is done to clean up the legacy codebase.")]
    public static void WriteInfoBoxProgressPlain(double progress, string text, params object[] vars)
    Parameters
    Type Name Description
    double progress

    Progress percentage from 0 to 100

    string text

    Text to be written.

    object[] vars

    Variables to format the message before it's written.

    | Edit this page View Source

    WriteInfoBoxProgressPlain(double, string, BorderSettings, params object[])

    Writes the info box plainly

    Declaration
    [Obsolete("This legacy function is to be removed from the final release of Terminaux 7.0. While you can use this in Beta 3, please move all settings to InfoBoxSettings. This is done to clean up the legacy codebase.")]
    public static void WriteInfoBoxProgressPlain(double progress, string text, BorderSettings settings, params object[] vars)
    Parameters
    Type Name Description
    double progress

    Progress percentage from 0 to 100

    string text

    Text to be written.

    BorderSettings settings

    Border settings to use

    object[] vars

    Variables to format the message before it's written.

    | Edit this page View Source

    WriteInfoBoxProgressPlain(string, double, string, params object[])

    Writes the info box plainly

    Declaration
    [Obsolete("This legacy function is to be removed from the final release of Terminaux 7.0. While you can use this in Beta 3, please move all settings to InfoBoxSettings. This is done to clean up the legacy codebase.")]
    public static void WriteInfoBoxProgressPlain(string title, double progress, string text, params object[] vars)
    Parameters
    Type Name Description
    string title

    Title to be written

    double progress

    Progress percentage from 0 to 100

    string text

    Text to be written.

    object[] vars

    Variables to format the message before it's written.

    • Edit this page
    • View Source
    In this article
    Back to top Generated by DocFX