Class Notification.ProgressType
Definition
- Namespace:
- Tizen.Applications.Notifications
- Assembly:
- Tizen.Applications.Notification.dll
Class for displaying progress notification. You must initialize progress category, current, and max value when you create an object.
C#Copypublic sealed class Notification.ProgressType : Notification.MakerBase
- Inheritance
-
objectNotification.Tizen.Applications.Notifications.Notification.MakerBaseNotification.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#Copypublic ProgressType(ProgressCategory category, double current, double max)
Parameters
Type | Name | Description |
---|---|---|
ProgressCategory | category | The category of progress that appeared on notification. |
double | current | The current value of the progress. |
double | max | The max value of the progress. |
Exceptions
Type | Condition |
---|---|
System.ArgumentException | Thrown when an argument is invalid. |
Properties
Declaration
C#Copypublic ProgressCategory Category { get; set; }
Property Value
Type | Description |
---|---|
ProgressCategory |
See Also
Declaration
C#Copypublic double ProgressCurrent { get; set; }
Property Value
Type | Description |
---|---|
double |
Exceptions
Type | Condition |
---|---|
System.ArgumentException | Thrown when argument is invalid. |
Declaration
C#Copypublic double ProgressMax { get; set; }
Property Value
Type | Description |
---|---|
double |
Exceptions
Type | Condition |
---|---|
System.ArgumentException | Thrown when argument is invalid. |