Class Extents
Definition
- Namespace:
- Tizen.NUI
- Assembly:
- Tizen.NUI.dll
- API Level:
- 4
Extents class describing the a collection of uint16_t.
public class Extents : Disposable, IDisposable, ICloneable
- Inheritance
- Implements
Constructors
View SourceExtents()
Constructor.
Declaration
public Extents()
API Level: 4
View SourceExtents(UInt16, UInt16, UInt16, UInt16)
Constructor. Start extent. End extent. Top extent. Bottom extent.
Declaration
public Extents(ushort start, ushort end, ushort top, ushort bottom)
Parameters
Type | Name | Description |
---|---|---|
UInt16 | start | |
UInt16 | end | |
UInt16 | top | |
UInt16 | bottom |
API Level: 4
View SourceExtents(Extents)
Constructor.
Declaration
public Extents(Extents copy)
Parameters
Type | Name | Description |
---|---|---|
Extents | copy | A reference to the copied Extents. |
API Level: 4
View SourceExtents(Extents.ExtentsChangedCallback, UInt16, UInt16, UInt16, UInt16)
Constructor
Declaration
public Extents(Extents.ExtentsChangedCallback cb, ushort start, ushort end, ushort top, ushort bottom)
Parameters
Type | Name | Description |
---|---|---|
Extents.ExtentsChangedCallback | cb | |
UInt16 | start | |
UInt16 | end | |
UInt16 | top | |
UInt16 | bottom |
API Level: Only used by Tizen.NUI.Components, will not be opened
Properties
View SourceBottom
The Bottom Extend.
Declaration
public ushort Bottom { get; set; }
Property Value
Type | Description |
---|---|
UInt16 |
Remarks
The setter is deprecated in API8 and will be removed in API10. Please use new Extents(...) constructor.
API Level: 4
View SourceEnd
The End extend.
Declaration
public ushort End { get; set; }
Property Value
Type | Description |
---|---|
UInt16 |
Remarks
The setter is deprecated in API8 and will be removed in API10. Please use new Extents(...) constructor.
API Level: 4
View SourceStart
The Start extent.
Declaration
public ushort Start { get; set; }
Property Value
Type | Description |
---|---|
UInt16 |
Remarks
The setter is deprecated in API8 and will be removed in API10. Please use new Extents(...) constructor.
API Level: 4
View SourceTop
The Top extend.
Declaration
public ushort Top { get; set; }
Property Value
Type | Description |
---|---|
UInt16 |
Remarks
The setter is deprecated in API8 and will be removed in API10. Please use new Extents(...) constructor.
API Level: 4
Methods
View SourceCopyFrom(Extents)
Copy other extents
Declaration
public void CopyFrom(Extents that)
Parameters
Type | Name | Description |
---|---|---|
Extents | that |
API Level: Only used by Tizen.NUI.Components, will not be opened
View SourceEqualTo(Extents)
Equality operator.
Declaration
public bool EqualTo(Extents rhs)
Parameters
Type | Name | Description |
---|---|---|
Extents | rhs | The Extents to test against. |
Returns
Type | Description |
---|---|
Boolean | True if the extents are not equal. |
API Level: 4
View SourceNotEqualTo(Extents)
Inequality operator.
Declaration
public bool NotEqualTo(Extents rhs)
Parameters
Type | Name | Description |
---|---|---|
Extents | rhs | The Extents to test against. |
Returns
Type | Description |
---|---|
Boolean | True if the extents are not equal. |