Class Highlight
Definition
- Namespace:
- Tizen.Applications.WatchfaceComplication
- Assembly:
- Tizen.Applications.WatchfaceComplication.dll
Represents the highlight data for an editable.
public class Highlight
- Inheritance
-
objectHighlight
Constructors
View SourceHighlight(ShapeType, int, int, int, int)
Initializes a new instance of the Highlight class.
Declaration
public 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
View SourceH
The height of editable.
Declaration
public int H { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
Exceptions
| Type | Condition |
|---|---|
| System.ArgumentException | Thrown when some parameter are invalid. |
ShapeType
The shape of editable.
Declaration
public ShapeType ShapeType { get; set; }
Property Value
| Type | Description |
|---|---|
| ShapeType |
W
The width of editable.
Declaration
public int W { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
Exceptions
| Type | Condition |
|---|---|
| System.ArgumentException | Thrown when some parameter are invalid. |
X
The x coordinate.
Declaration
public int X { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
Exceptions
| Type | Condition |
|---|---|
| System.ArgumentException | Thrown when some parameter are invalid. |
Y
The y coordinate.
Declaration
public int Y { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
Exceptions
| Type | Condition |
|---|---|
| System.ArgumentException | Thrown when some parameter are invalid. |
Methods
View Source~Highlight()
Destructor of the Highlight class.
Declaration
protected ~Highlight()