Class ImageTransformCollection
Definition
- Namespace:
- Tizen.Multimedia.Util
- Assembly:
- Tizen.Multimedia.Util.dll
Represents a collection of Image
C#
Copy
public class ImageTransformCollection : IList<ImageTransform>, ICollection<ImageTransform>, IEnumerable<ImageTransform>, IEnumerable
- Inheritance
-
objectImage
Transform Collection
- Implements
-
System.Collections.Generic.IList<T><Image
Transform >System.Collections.Generic.ICollection<T><ImageTransform >System.Collections.Generic.IEnumerable<T><ImageTransform >System.Collections. IEnumerable
Constructors
ImageTransformCollection()
Initializes a new instance of the ImageTransformCollection class.
Declaration
C#
Copy
public ImageTransformCollection()
Properties
Declaration
C#
Copy
public int Count { get; }
Property Value
Type | Description |
---|---|
int |
Declaration
C#
Copy
public ImageTransform this[int index] { get; set; }
Parameters
Type | Name | Description |
---|---|---|
int | index | The zero-based index of the Image |
Property Value
Type | Description |
---|---|
Image |
The Image |
Exceptions
Type | Condition |
---|---|
System. |
index is less than 0. |
Methods
Declaration
C#
Copy
public void Add(ImageTransform item)
Parameters
Type | Name | Description |
---|---|---|
Image |
item | The Image |
Remarks
Image
Declaration
C#
Copy
public void Clear()
Contains(ImageTransform)
Determines whether the Image
Declaration
C#
Copy
public bool Contains(ImageTransform item)
Parameters
Type | Name | Description |
---|---|---|
Image |
item | The Image |
Returns
Type | Description |
---|---|
bool | true if the Image |
CopyTo(ImageTransform[], int)
Copies the items of the collection to an array, starting at the specified array index.
Declaration
C#
Copy
public void CopyTo(ImageTransform[] array, int arrayIndex)
Parameters
Type | Name | Description |
---|---|---|
Image |
array | The one-dimensional array that is the destination of the items copied from the collection. |
int | arrayIndex | The zero-based index in array at which copying begins. |
Exceptions
Type | Condition |
---|---|
System. |
|
System. |
|
System. |
The number of elements in the source collection is greater than the available space from arrayIndex to the end of the destination array. |
Declaration
C#
Copy
public IEnumerator<ImageTransform> GetEnumerator()
Returns
Type | Description |
---|---|
System.Collections.Generic.IEnumerator<T><Image |
An enumerator that can be used to iterate through the collection. |
Declaration
C#
Copy
public int IndexOf(ImageTransform item)
Parameters
Type | Name | Description |
---|---|---|
Image |
item | The Image |
Returns
Type | Description |
---|---|
int | The index of value if found in the Image |
Insert(int, ImageTransform)
Inserts a Image
Declaration
C#
Copy
public void Insert(int index, ImageTransform item)
Parameters
Type | Name | Description |
---|---|---|
int | index | The zero-based index at which |
Image |
item | The Image |
Exceptions
Type | Condition |
---|---|
System. |
|
System. |
index is less than 0. |
Remove(ImageTransform)
Removes the first occurrence of the specified Image
Declaration
C#
Copy
public bool Remove(ImageTransform item)
Parameters
Type | Name | Description |
---|---|---|
Image |
item | The Image |
Returns
Type | Description |
---|---|
bool | true if |
Declaration
C#
Copy
public void RemoveAt(int index)
Parameters
Type | Name | Description |
---|---|---|
int | index | The zero-based index to remove. |
Exceptions
Type | Condition |
---|---|
System. |
index is less than 0. |
Explicit Interface Implementations
Declaration
C#
Copy
bool ICollection<ImageTransform>.IsReadOnly { get; }
Returns
Type | Description |
---|---|
bool |
Declaration
C#CopyIEnumerator IEnumerable.GetEnumerator()
Returns
Type | Description |
---|---|
System. |