TransformCollection.Insert(Int32, Transform) Method
Definition
Inserts a Transform into the TransformCollection at the specified index.
public:
virtual void Insert(int index, System::Windows::Media::Transform ^ value);
public void Insert (int index, System.Windows.Media.Transform value);
abstract member Insert : int * System.Windows.Media.Transform -> unit
override this.Insert : int * System.Windows.Media.Transform -> unit
Public Sub Insert (index As Integer, value As Transform)
Parameters
- index
- Int32
The zero-based index at which value
should be inserted.
- value
- Transform
The Transform to insert into the TransformCollection.
Implements
Exceptions
value
is null
.
index
is not a valid index in the TransformCollection.
Remarks
Unlike typical implementations of IList<T>.Insert, this implementation throws an ArgumentException if you attempt to insert a null (Nothing) reference.