GeneralTransformCollection.Item[Int32] Свойство
Определение
Возвращает или задает объект GeneralTransform по указанному положению индекса.Gets or sets the GeneralTransform object at the specified index position.
public:
property System::Windows::Media::GeneralTransform ^ default[int] { System::Windows::Media::GeneralTransform ^ get(int index); void set(int index, System::Windows::Media::GeneralTransform ^ value); };
public System.Windows.Media.GeneralTransform this[int index] { get; set; }
member this.Item(int) : System.Windows.Media.GeneralTransform with get, set
Default Public Property Item(index As Integer) As GeneralTransform
Параметры
- index
- Int32
Позиция индекса (начиная от нуля) для получаемого или задаваемого объекта.The zero-based index position of the object to get or set.
Значение свойства
Объект GeneralTransform в позиции index
.The GeneralTransform object at the index
position.
Реализации
Исключения
value
имеет значение null
.value
is null
.
index
не является допустимым индексом в GeneralTransformCollection.index
is not a valid index in the GeneralTransformCollection.
Объект GeneralTransformCollection доступен только для чтения.The GeneralTransformCollection is read-only.
-или--or- GeneralTransformCollection имеет фиксированный размер.The GeneralTransformCollection has a fixed size.
Комментарии
В отличие от типовых реализаций IList<T>.Item[] , эта реализация создает исключение ArgumentException при попытке вставить ссылку null (Nothing).Unlike typical implementations of IList<T>.Item[], this implementation throws an ArgumentException if you attempt to insert a null (Nothing) reference.