Class Highlight

Definition

Namespace:
Tizen.Applications.WatchfaceComplication
Assembly:
Tizen.Applications.WatchfaceComplication.dll

Represents the highlight data for an editable.

C#
Copy
public class Highlight
Inheritance
object
Highlight

Constructors

View Source

Highlight(ShapeType, int, int, int, int)

Initializes a new instance of the Highlight class.

Declaration
C#
Copy
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 Source

H

The height of editable.

Declaration
C#
Copy
public int H { get; set; }
Property Value
Type Description
int
Exceptions
Type Condition
System.ArgumentException

Thrown when some parameter are invalid.

View Source

ShapeType

The shape of editable.

Declaration
C#
Copy
public ShapeType ShapeType { get; set; }
Property Value
Type Description
ShapeType
View Source

W

The width of editable.

Declaration
C#
Copy
public int W { get; set; }
Property Value
Type Description
int
Exceptions
Type Condition
System.ArgumentException

Thrown when some parameter are invalid.

View Source

X

The x coordinate.

Declaration
C#
Copy
public int X { get; set; }
Property Value
Type Description
int
Exceptions
Type Condition
System.ArgumentException

Thrown when some parameter are invalid.

View Source

Y

The y coordinate.

Declaration
C#
Copy
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
C#
Copy
protected ~Highlight()