Struct Size
Definition
- Namespace:
- Tizen.Multimedia
- Assembly:
- Tizen.Multimedia.dll
Represents a size in 2D space.
C#Copypublic struct Size
Constructors
Declaration
C#Copypublic Size(int width, int height)
Parameters
Type | Name | Description |
---|---|---|
int | width | Width of the size. |
int | height | Height of the size. |
Properties
Declaration
C#Copypublic int Height { readonly get; set; }
Property Value
Type | Description |
---|---|
int |
Declaration
C#Copypublic int Width { readonly get; set; }
Property Value
Type | Description |
---|---|
int |
Methods
Declaration
C#Copypublic override bool Equals(object obj)
Parameters
Type | Name | Description |
---|---|---|
object | obj | A object to compare. |
Returns
Type | Description |
---|---|
bool | true if the two sizes are equal; otherwise, false. |
Overrides
System.ValueType.Equals(object)
Declaration
C#Copypublic override int GetHashCode()
Returns
Type | Description |
---|---|
int | The hash code for this instance of Size. |
Overrides
System.ValueType.GetHashCode()
Declaration
C#Copypublic override string ToString()
Returns
Type | Description |
---|---|
string | A string that represents the current object. |
Overrides
System.ValueType.ToString()
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 |
---|---|
bool | true if the two instances of Size are equal; otherwise false. |
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 |
---|---|
bool | true if the two instances of Size are not equal; otherwise false. |