Search Results for

    Show / Hide Table of Contents

    Class InstallDialogOptions

    Represents the RVM options that can be used.

    Inheritance
    System.Object
    InstallDialogOptions
    Inherited Members
    System.Object.Equals(System.Object)
    System.Object.Equals(System.Object, System.Object)
    System.Object.GetHashCode()
    System.Object.GetType()
    System.Object.MemberwiseClone()
    System.Object.ReferenceEquals(System.Object, System.Object)
    System.Object.ToString()
    Namespace: OpenFin.Net.Adapter
    Assembly: OpenFin.Net.Adapter.dll
    Syntax
    public class InstallDialogOptions

    Properties

    BackgroundColor

    Determines the color of the dialog. Color value is a int representation of a 32 bit number (A,R,G,B). For instance : 4278255360 is fully opaque green.

    Declaration
    [JsonPropertyName("bgColor")]
    public uint? BackgroundColor { get; set; }
    Property Value
    Type Description
    System.Nullable<System.UInt32>

    LogoPath

    Relative Path or URL of the logo or image in the Download screen. Should be semi-transparent PNG. 100×25 pixels

    Declaration
    [JsonIgnore]
    public string LogoPath { get; set; }
    Property Value
    Type Description
    System.String

    LogoUrl

    Absolute URL of the logo or image in the Download screen. Should be semi-transparent PNG. 100×25 pixels

    Declaration
    [JsonPropertyName("logo")]
    public string LogoUrl { get; }
    Property Value
    Type Description
    System.String

    ProgressBarBackgroundColor

    Determines the background color of the area where the progress bar is displayed. Color value is a int representation of a 32 bit number (A,R,G,B). For instance : 4278255360 is fully opaque green.

    Declaration
    [JsonPropertyName("progressBarBgColor")]
    [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
    public uint? ProgressBarBackgroundColor { get; set; }
    Property Value
    Type Description
    System.Nullable<System.UInt32>

    ProgressBarBorderColor

    Determines the border color of the progress bar.

    Declaration
    [JsonPropertyName("progressBarBorder")]
    public uint? ProgressBarBorderColor { get; set; }
    Property Value
    Type Description
    System.Nullable<System.UInt32>

    ProgressBarFillColor

    Determines the color of the progress bar. Color value is a int representation of a 32 bit number (A,R,G,B). For instance : 4278255360 is fully opaque green.

    Declaration
    [JsonPropertyName("progressBarFillColor")]
    public uint? ProgressBarFillColor { get; set; }
    Property Value
    Type Description
    System.Nullable<System.UInt32>

    TextColor

    Determines the color of the text displayed above the progress bar location. Color value is a int representation of a 32 bit number (A,R,G,B). For instance : 4278255360 is fully opaque green.

    Declaration
    [JsonPropertyName("textColor")]
    public uint? TextColor { get; set; }
    Property Value
    Type Description
    System.Nullable<System.UInt32>
    In This Article
    Back to top Copyright OpenFin