Vector3DKeyFrameCollection.Item[Int32] Свойство
Определение
Получает или задает Vector3DKeyFrame в указанной позиции индекса.Gets or sets the Vector3DKeyFrame at the specified index position.
public:
property System::Windows::Media::Animation::Vector3DKeyFrame ^ default[int] { System::Windows::Media::Animation::Vector3DKeyFrame ^ get(int index); void set(int index, System::Windows::Media::Animation::Vector3DKeyFrame ^ value); };
public System.Windows.Media.Animation.Vector3DKeyFrame this[int index] { get; set; }
member this.Item(int) : System.Windows.Media.Animation.Vector3DKeyFrame with get, set
Default Public Property Item(index As Integer) As Vector3DKeyFrame
Параметры
- index
- Int32
Индекс (с нуля) возвращаемого или задаваемого Vector3DKeyFrame.The zero-based index of the Vector3DKeyFrame to get or set.
Значение свойства
Объект Vector3DKeyFrame по указанному индексу.The Vector3DKeyFrame at the specified index.
Исключения
Попытка изменения коллекции является недопустимой, так как эта коллекция является зафиксированной (ее свойство IsFrozen имеет значение true
).The attempt to modify the collection is invalid because the collection is frozen (its IsFrozen property is true
).
Значение параметра index
меньше нуля.index
is less than zero.
-или--or-
Значение параметра index
больше или равно значению свойства Count.index
is equal to or greater than Count.