Struct Size
Definition
- Namespace:
- Tizen.Multimedia
- Assembly:
- Tizen.Multimedia.dll
- API Level:
- 3
Represents a size in 2D space.
C#Copypublic struct Size
Constructors
Declaration
C#Copypublic Size(int width, int height)
Parameters
Type | Name | Description |
---|---|---|
Int32 | width | Width of the size. |
Int32 | height | Height of the size. |
API Level: 3
Properties
Declaration
C#Copypublic int Height { get; set; }
Property Value
Type | Description |
---|---|
Int32 |
API Level: 3
Declaration
C#Copypublic int Width { get; set; }
Property Value
Type | Description |
---|---|
Int32 |
API Level: 3
Methods
Declaration
C#Copypublic override bool Equals(object obj)
Parameters
Type | Name | Description |
---|---|---|
Object | obj | A |
Returns
Type | Description |
---|---|
Boolean | true if the two sizes are equal; otherwise, false. |
API Level: 3
Declaration
C#Copypublic override int GetHashCode()
Returns
Type | Description |
---|---|
Int32 | The hash code for this instance of Size. |
API Level: 3
Declaration
C#Copypublic override string ToString()
Returns
Type | Description |
---|---|
String | A string that represents the current object. |
API Level: 3
Operators
Declaration
C#Copypublic static bool operator ==(Size size1, Size size2)
Parameters
Type | Name | Description |
---|---|---|
Size | size1 | A Size to compare. |
Size | size2 | A Size to compare. |
Returns
Type | Description |
---|---|
Boolean | true if the two instances of Size are equal; otherwise false. |
API Level: 3
Declaration
C#Copypublic static bool operator !=(Size size1, Size size2)
Parameters
Type | Name | Description |
---|---|---|
Size | size1 | A Size to compare. |
Size | size2 | A Size to compare. |
Returns
Type | Description |
---|---|
Boolean | true if the two instances of Size are not equal; otherwise false. |