Class Extents
Definition
- Assembly:
- Tizen.NUI.dll
Extents class describing the a collection of uint16_t.
C#Copypublic class Extents : Disposable, IDisposable, ICloneable
- Inheritance
- Implements
- 
      System.IDisposableSystem.ICloneable
Constructors
Declaration
C#Copypublic Extents()
Extents(ushort, ushort, ushort, ushort)
Constructor.
The start extent value horizontally. The end extent value horizontally. The top extent value vertically. The bottom extent value vertically.Declaration
C#Copypublic Extents(ushort start, ushort end, ushort top, ushort bottom)
Parameters
| Type | Name | Description | 
|---|---|---|
| ushort | start | |
| ushort | end | |
| ushort | top | |
| ushort | bottom | 
Declaration
C#Copypublic Extents(Extents.ExtentsChangedCallback cb, ushort start, ushort end, ushort top, ushort bottom)
Parameters
| Type | Name | Description | 
|---|---|---|
| Extents.ExtentsChangedCallback | cb | |
| ushort | start | The start extent value horizontally. | 
| ushort | end | The end extent value horizontally. | 
| ushort | top | The top extent value vertically. | 
| ushort | bottom | The bottom extent value vertically. | 
Declaration
C#Copypublic Extents(Extents copy)
Parameters
| Type | Name | Description | 
|---|---|---|
| Extents | copy | A reference to the copied Extents. | 
Properties
Declaration
C#Copypublic ushort Bottom { get; set; }
Property Value
| Type | Description | 
|---|---|
| ushort | 
Remarks
The setter is deprecated in API8 and will be removed in API10. Use new Extents(...) constructor.
Declaration
C#Copypublic ushort End { get; set; }
Property Value
| Type | Description | 
|---|---|
| ushort | 
Remarks
The setter is deprecated in API8 and will be removed in API10. Use new Extents(...) constructor.
Declaration
C#Copypublic ushort Start { get; set; }
Property Value
| Type | Description | 
|---|---|
| ushort | 
Remarks
The setter is deprecated in API8 and will be removed in API10. Ue new Extents(...) constructor.
Declaration
C#Copypublic ushort Top { get; set; }
Property Value
| Type | Description | 
|---|---|
| ushort | 
Remarks
The setter is deprecated in API8 and will be removed in API10. Use new Extents(...) constructor.
Methods
Declaration
C#Copypublic void CopyFrom(Extents that)
Parameters
| Type | Name | Description | 
|---|---|---|
| Extents | that | 
Exceptions
| Type | Condition | 
|---|---|
| System.ArgumentNullException | Thrown when that is null. | 
Declaration
C#Copypublic bool EqualTo(Extents rhs)
Parameters
| Type | Name | Description | 
|---|---|---|
| Extents | rhs | The Extents to test against. | 
Returns
| Type | Description | 
|---|---|
| bool | True if the extents are not equal. | 
Declaration
C#Copypublic bool NotEqualTo(Extents rhs)
Parameters
| Type | Name | Description | 
|---|---|---|
| Extents | rhs | The Extents to test against. | 
Returns
| Type | Description | 
|---|---|
| bool | True if the extents are not equal. |