Table of Contents

Class ProgressDisplay

Namespace
Dynamicweb.CoreUI.Displays.Widgets
Assembly
Dynamicweb.CoreUI.dll
public sealed class ProgressDisplay : DisplayBase<int>
Inheritance
ProgressDisplay
Inherited Members
Extension Methods

Constructors

ProgressDisplay(int)

public ProgressDisplay(int percent)

Parameters

percent int

ProgressDisplay(int, int)

public ProgressDisplay(int currentValue, int totalValue)

Parameters

currentValue int
totalValue int

Properties

HideSummary

public bool HideSummary { get; set; }

Property Value

bool

OutOf

public int OutOf { get; set; }

Property Value

int

PrimaryAction

public ActionBase? PrimaryAction { get; set; }

Property Value

ActionBase

ProgressType

public ProgressWidgetType ProgressType { get; set; }

Property Value

ProgressWidgetType

Unit

public string Unit { get; set; }

Property Value

string

Methods

GetProgress()

Returns the percent of the progress.

public int GetProgress()

Returns

int

The percentage value.

To top