Struct Size
Definition
- Namespace:
- Tizen.Multimedia
- Assembly:
- Tizen.Multimedia.dll
- API Level:
- 3
Represents a size in 2D space.
public struct Size
Constructors
View SourceSize(Int32, Int32)
Initializes a new instance of the Size with the specified values.
Declaration
public 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
View SourceHeight
Gets or sets the height.
Declaration
public int Height { get; set; }
Property Value
Type | Description |
---|---|
Int32 |
API Level: 3
View SourceWidth
Gets or sets the width.
Declaration
public int Width { get; set; }
Property Value
Type | Description |
---|---|
Int32 |
API Level: 3
Methods
View SourceEquals(Object)
Compares an object to an instance of Size for equality.
Declaration
public override bool Equals(object obj)
Parameters
Type | Name | Description |
---|---|---|
Object | obj | A Object to compare. |
Returns
Type | Description |
---|---|
Boolean | true if the two sizes are equal; otherwise, false. |
Overrides
API Level: 3
View SourceGetHashCode()
Gets the hash code for this instance of Size.
Declaration
public override int GetHashCode()
Returns
Type | Description |
---|---|
Int32 | The hash code for this instance of Size. |
Overrides
API Level: 3
View SourceToString()
Returns a string that represents the current object.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
String | A string that represents the current object. |
Overrides
API Level: 3
Operators
View SourceEquality(Size, Size)
Compares two instances of Size for equality.
Declaration
public 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
View SourceInequality(Size, Size)
Compares two instances of Size for inequality.
Declaration
public 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. |