Class Notification.ProgressType

Definition

Namespace:
Tizen.Applications.Notifications
Assembly:
Tizen.Applications.Notification.dll
API Level:
3

Class for displaying progress notification. You must initialize progress category, current, and max value when you create an object.

C#
Copy
public sealed class ProgressType : Notification.MakerBase
Inheritance
System.Object
Tizen.Applications.Notifications.Notification.MakerBase
Notification.ProgressType

Constructors

View Source

ProgressType(ProgressCategory, Double, Double)

Initializes a new instance of the Notification.ProgressType class. You must initialize category, current, and max value of the progress.

Declaration
C#
Copy
public ProgressType(ProgressCategory category, double current, double max)
Parameters
Type Name Description
ProgressCategory category

The category of progress that appeared on notification.

System.Double current

The current value of the progress.

System.Double max

The max value of the progress.

Exceptions
Type Condition
System.ArgumentException

Thrown when an argument is invalid.

API Level: 3

Properties

View Source

Category

Gets or sets category of ProgressType.

Declaration
C#
Copy
public ProgressCategory Category { get; set; }
Property Value
Type Description
ProgressCategory
See Also
API Level: 3
View Source

ProgressCurrent

Gets or sets current value of ProgressType.

Declaration
C#
Copy
public double ProgressCurrent { get; set; }
Property Value
Type Description
System.Double
Exceptions
Type Condition
System.ArgumentException

Thrown when argument is invalid.

API Level: 3
View Source

ProgressMax

Gets or sets max value of ProgressType.

Declaration
C#
Copy
public double ProgressMax { get; set; }
Property Value
Type Description
System.Double
Exceptions
Type Condition
System.ArgumentException

Thrown when argument is invalid.

API Level: 3