GeneralTransformCollection.Add(GeneralTransform) Method

Definition

Adds a GeneralTransform object to the end of the GeneralTransformCollection.

public:
 virtual void Add(System::Windows::Media::GeneralTransform ^ value);
public void Add (System.Windows.Media.GeneralTransform value);
abstract member Add : System.Windows.Media.GeneralTransform -> unit
override this.Add : System.Windows.Media.GeneralTransform -> unit
Public Sub Add (value As GeneralTransform)

Parameters

value
GeneralTransform

The GeneralTransform to add to the end of the GeneralTransformCollection.

Implements

Exceptions

value is null.

The GeneralTransformCollection is read-only.

-or-

The GeneralTransformCollection has a fixed size.

Remarks

Unlike typical implementations of ICollection<T>.Add, this implementation throws an ArgumentException if you attempt to add a null (Nothing) reference.

Applies to

See also