Class ImageTransformCollection
Definition
- Namespace:
- Tizen.Multimedia.Util
- Assembly:
- Tizen.Multimedia.Util.dll
Represents a collection of Image
public class ImageTransformCollection : IList<ImageTransform>, ICollection<ImageTransform>, IEnumerable<ImageTransform>, IEnumerable
- Inheritance
-
objectImage
Transform Collection
- Implements
-
System.
Collections. <ImageGeneric. IList<T> Transform >System.Collections. <ImageGeneric. ICollection<T> Transform >System.Collections. <ImageGeneric. IEnumerable<T> Transform >System.Collections. IEnumerable
Constructors
View SourceImageTransformCollection()
Initializes a new instance of the ImageTransformCollection class.
Declaration
public ImageTransformCollection()
Properties
View SourceCount
Gets the number of items contained in the TransformCollection.
Declaration
public int Count { get; }
Property Value
Type | Description |
---|---|
int |
this[int]
Gets or sets the Image
Declaration
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
View SourceAdd(ImageTransform)
Adds a Image
Declaration
public void Add(ImageTransform item)
Parameters
Type | Name | Description |
---|---|---|
Image |
item | The Image |
Remarks
Image
Clear()
Removes all items.
Declaration
public void Clear()
Contains(ImageTransform)
Determines whether the Image
Declaration
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
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. |
GetEnumerator()
Returns an enumerator that can iterate through the collection.
Declaration
public IEnumerator<ImageTransform> GetEnumerator()
Returns
Type | Description |
---|---|
System. |
An enumerator that can be used to iterate through the collection. |
IndexOf(ImageTransform)
Determines the index of the specified item in the collection.
Declaration
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
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
public bool Remove(ImageTransform item)
Parameters
Type | Name | Description |
---|---|---|
Image |
item | The Image |
Returns
Type | Description |
---|---|
bool | true if |
RemoveAt(int)
Removes the Image
Declaration
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
View SourceICollection<ImageTransform>.IsReadOnly
Declaration
bool ICollection<ImageTransform>.IsReadOnly { get; }
Returns
Type | Description |
---|---|
bool |
IEnumerable.GetEnumerator()
Declaration
IEnumerator IEnumerable.GetEnumerator()
Returns
Type | Description |
---|---|
System. |