Class Highlight

Definition

Namespace:
Tizen.Applications.WatchfaceComplication
Assembly:
Tizen.Applications.WatchfaceComplication.dll
API Level:
6

Represents the highlight data for an editable.

C#
Copy
public class Highlight
Inheritance
System.Object
Highlight

Constructors

View Source

Highlight(ShapeType, Int32, Int32, Int32, Int32)

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.

Int32 x

The highlight geometry x.

Int32 y

The highlight geometry y.

Int32 w

The highlight geometry w.

Int32 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.

API Level: 6

Properties

View Source

H

The height of editable.

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

Thrown when some parameter are invalid.

API Level: 6
View Source

ShapeType

The shape of editable.

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

W

The width of editable.

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

Thrown when some parameter are invalid.

API Level: 6
View Source

X

The x coordinate.

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

Thrown when some parameter are invalid.

API Level: 6
View Source

Y

The y coordinate.

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

Thrown when some parameter are invalid.

API Level: 6

Methods

View Source

Finalize()

Destructor of the Highlight class.

Declaration
C#
Copy
protected void Finalize()