Class TizenRegion

Definition

Namespace:
Tizen.NUI.WindowSystem.Shell
Assembly:
Tizen.NUI.WindowSystem.dll

Tizen Window System Shell. This is a basic handle class for others in WsShell. Others class in WsShell using this basic class to use TIzen Window System Shell.

C#
Copy
public class TizenRegion : IDisposable
Inheritance
TizenRegion

Constructors

View Source

TizenRegion(TizenShell)

Creates a new Tizen region object.

Declaration
C#
Copy
public TizenRegion(TizenShell tzShell)
Parameters
Type Name Description
TizenShell tzShell

The TzShell instance.

Methods

View Source

Add(Int32, Int32, Int32, Int32)

Adds the rectangle to the region.

Declaration
C#
Copy
public void Add(int x, int y, int w, int h)
Parameters
Type Name Description
Int32 x

The x coordinate

Int32 y

The y coordinate

Int32 w

The width

Int32 h

The height

View Source

Dispose()

Dispose.

Declaration
C#
Copy
public void Dispose()
View Source

Dispose(DisposeTypes)

Declaration
C#
Copy
protected virtual void Dispose(DisposeTypes type)
Parameters
Type Name Description
DisposeTypes type
View Source

Finalize()

Destructor.

Declaration
C#
Copy
protected void Finalize()
View Source

Subtract(Int32, Int32, Int32, Int32)

Substracts the rectangle to the tizen region.

Declaration
C#
Copy
public void Subtract(int x, int y, int w, int h)
Parameters
Type Name Description
Int32 x

The x coordinate

Int32 y

The y coordinate

Int32 w

The width

Int32 h

The height

Extension Methods