Class Highlight
Definition
- Namespace:
- Tizen.Applications.WatchfaceComplication
- Assembly:
- Tizen.Applications.WatchfaceComplication.dll
Represents the highlight data for an editable.
C#Copypublic class Highlight
- Inheritance
-
objectHighlight
Constructors
View Source
Highlight(ShapeType, int, int, int, int)
Initializes a new instance of the Highlight class.
Declaration
C#Copypublic Highlight(ShapeType type, int x, int y, int w, int h)
Parameters
| Type | Name | Description |
|---|---|---|
| ShapeType | type | The highlight shape type. |
| int | x | The highlight geometry x. |
| int | y | The highlight geometry y. |
| int | w | The highlight geometry w. |
| int | h | The highlight geometry h. |
Exceptions
| Type | Condition |
|---|---|
| System.ArgumentException | Thrown when some parameter are invalid. |
| System.InvalidOperationException | Thrown when the method failed due to invalid operation. |
Properties
Declaration
C#Copypublic int H { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
Exceptions
| Type | Condition |
|---|---|
| System.ArgumentException | Thrown when some parameter are invalid. |
Declaration
C#Copypublic ShapeType ShapeType { get; set; }
Property Value
| Type | Description |
|---|---|
| ShapeType |
Declaration
C#Copypublic int W { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
Exceptions
| Type | Condition |
|---|---|
| System.ArgumentException | Thrown when some parameter are invalid. |
Declaration
C#Copypublic int X { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
Exceptions
| Type | Condition |
|---|---|
| System.ArgumentException | Thrown when some parameter are invalid. |
Declaration
C#Copypublic int Y { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
Exceptions
| Type | Condition |
|---|---|
| System.ArgumentException | Thrown when some parameter are invalid. |
Methods
Declaration
C#Copyprotected ~Highlight()