Show / Hide Table of Contents

Struct FilterPadList

Represents a read-only list of FilterPad objects, providing access to the pads in a filter.

Implements
IReadOnlyList<FilterPad>
IReadOnlyCollection<FilterPad>
IEnumerable<FilterPad>
IEnumerable
Inherited Members
ValueType.Equals(object)
ValueType.GetHashCode()
ValueType.ToString()
object.GetType()
object.Equals(object, object)
object.ReferenceEquals(object, object)
Namespace: FFmpeg.Filters
Assembly: FFmpeg.dll
Syntax
public readonly struct FilterPadList : IReadOnlyList<FilterPad>, IReadOnlyCollection<FilterPad>, IEnumerable<FilterPad>, IEnumerable

Properties

View Source

Count

Gets the number of filter pads in the list.

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

this[int]

Gets the FilterPad at the specified index.

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

The zero-based index of the pad to retrieve.

Property Value
Type Description
FilterPad

The FilterPad at the specified index.

Exceptions
Type Condition
ArgumentOutOfRangeException

Thrown when the index is outside the range of available pads.

Methods

View Source

GetEnumerator()

Returns an enumerator that iterates through the FilterPadList.

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

An enumerator for the FilterPadList.

Implements

IReadOnlyList<T>
IReadOnlyCollection<T>
IEnumerable<T>
IEnumerable
  • View Source
In this article
Back to top Generated by DocFX