Class ImageTransformCollection

    Definition

    Namespace:
    Tizen.Multimedia.Util
    Assembly:
    Tizen.Multimedia.Util.dll

    Represents a collection of ImageTransform objects that can be individually accessed by index.

    public class ImageTransformCollection : IEnumerable<ImageTransform>, IList<ImageTransform>
    Inheritance
    object
    ImageTransformCollection
    Implements
    IList<><ImageTransform>

    Constructors

    View Source

    ImageTransformCollection()

    Initializes a new instance of the ImageTransformCollection class.

    Declaration
    public ImageTransformCollection()

    Properties

    View Source

    Count

    Gets the number of items contained in the TransformCollection.

    Declaration
    public int Count { get; }
    Property Value
    Type Description
    int
    View Source

    this[int]

    Gets or sets the ImageTransform at the specified index.

    Declaration
    public ImageTransform this[int index] { get; set; }
    Parameters
    Type Name Description
    int index

    The zero-based index of the ImageTransform to get or set.

    Property Value
    Type Description
    ImageTransform

    The ImageTransform at the specified index.

    Methods

    View Source

    Add(ImageTransform)

    Adds a ImageTransform to the end of the collection.

    Declaration
    public void Add(ImageTransform item)
    Parameters
    Type Name Description
    ImageTransform item

    The ImageTransform to add.

    Remarks

    ImageTransformCollection accepts null as a valid value for reference types and allows duplicate elements.

    View Source

    Clear()

    Removes all items.

    Declaration
    public void Clear()
    View Source

    Contains(ImageTransform)

    Determines whether the ImageTransformCollection contains the specified item.

    Declaration
    public bool Contains(ImageTransform item)
    Parameters
    Type Name Description
    ImageTransform item

    The ImageTransform to locate in the collection.

    Returns
    Type Description
    bool

    true if the ImageTransform is found in the collection; otherwise, false.

    View Source

    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
    ImageTransform[] 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.

    View Source

    GetEnumerator()

    Returns an enumerator that can iterate through the collection.

    Declaration
    public IEnumerator<ImageTransform> GetEnumerator()
    Returns
    Type Description
    IEnumerator<><ImageTransform>

    An enumerator that can be used to iterate through the collection.

    View Source

    IndexOf(ImageTransform)

    Determines the index of the specified item in the collection.

    Declaration
    public int IndexOf(ImageTransform item)
    Parameters
    Type Name Description
    ImageTransform item

    The ImageTransform to locate in the collection.

    Returns
    Type Description
    int

    The index of value if found in the ImageTransformCollection; otherwise, -1.

    View Source

    Insert(int, ImageTransform)

    Inserts a ImageTransform into the collection at the specified index.

    Declaration
    public void Insert(int index, ImageTransform item)
    Parameters
    Type Name Description
    int index

    The zero-based index at which item should be inserted.

    ImageTransform item

    The ImageTransform to insert into the collection.

    View Source

    Remove(ImageTransform)

    Removes the first occurrence of the specified ImageTransform from the collection.

    Declaration
    public bool Remove(ImageTransform item)
    Parameters
    Type Name Description
    ImageTransform item

    The ImageTransform to remove.

    Returns
    Type Description
    bool

    true if item was removed from the collection; otherwise, false.

    View Source

    RemoveAt(int)

    Removes the ImageTransform at the specified index.

    Declaration
    public void RemoveAt(int index)
    Parameters
    Type Name Description
    int index

    The zero-based index to remove.

    Implements

    IList<>

    Extension Methods

    EXamlExtensions.LoadFromEXamlByRelativePath<T>(T, string)
    Extensions.LoadFromXaml<TXaml>(TXaml, string)
    Extensions.LoadFromXaml<TXaml>(TXaml, Type)
    Extensions.LoadFromXamlFile<TXaml>(TXaml, string)
    • View Source
    Back to top Copyright © 2016-2025 Samsung
    Generated by DocFX