VectorCollection コンストラクター
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
VectorCollection クラスの新しいインスタンスを初期化します。
オーバーロード
VectorCollection() |
VectorCollection クラスの新しいインスタンスを初期化します。 |
VectorCollection(IEnumerable<Vector>) |
VectorCollection 値の指定したコレクションからコピーされた項目を格納し、コピーされた項目数に一致する初期量を持つ、Vector クラスの新しいインスタンスを初期化します。 |
VectorCollection(Int32) |
指定された容量を使用して VectorCollection クラスの新しいインスタンスを初期化します。 |
VectorCollection()
VectorCollection クラスの新しいインスタンスを初期化します。
public:
VectorCollection();
public VectorCollection ();
Public Sub New ()
適用対象
VectorCollection(IEnumerable<Vector>)
VectorCollection 値の指定したコレクションからコピーされた項目を格納し、コピーされた項目数に一致する初期量を持つ、Vector クラスの新しいインスタンスを初期化します。
public:
VectorCollection(System::Collections::Generic::IEnumerable<System::Windows::Vector> ^ collection);
public VectorCollection (System.Collections.Generic.IEnumerable<System.Windows.Vector> collection);
new System.Windows.Media.VectorCollection : seq<System.Windows.Vector> -> System.Windows.Media.VectorCollection
Public Sub New (collection As IEnumerable(Of Vector))
パラメーター
- collection
- IEnumerable<Vector>
新しい VectorCollection に項目がコピーされたコレクション。
例外
collection
が null
です。
適用対象
VectorCollection(Int32)
指定された容量を使用して VectorCollection クラスの新しいインスタンスを初期化します。
public:
VectorCollection(int capacity);
public VectorCollection (int capacity);
new System.Windows.Media.VectorCollection : int -> System.Windows.Media.VectorCollection
Public Sub New (capacity As Integer)