GradientStopCollection コンストラクター

定義

GradientStopCollection クラスの新しいインスタンスを初期化します。

オーバーロード

GradientStopCollection()

GradientStopCollection クラスの新しいインスタンスを初期化します。

GradientStopCollection(IEnumerable<GradientStop>)

指定したコレクションの要素を格納する GradientStopCollection クラスの新しいインスタンスを初期化します。

GradientStopCollection(Int32)

指定した数の項目を最初に格納できる GradientStopCollection クラスの新しいインスタンスを初期化します。

GradientStopCollection()

GradientStopCollection クラスの新しいインスタンスを初期化します。

public:
 GradientStopCollection();
public GradientStopCollection ();
Public Sub New ()

適用対象

GradientStopCollection(IEnumerable<GradientStop>)

指定したコレクションの要素を格納する GradientStopCollection クラスの新しいインスタンスを初期化します。

public:
 GradientStopCollection(System::Collections::Generic::IEnumerable<System::Windows::Media::GradientStop ^> ^ collection);
public GradientStopCollection (System.Collections.Generic.IEnumerable<System.Windows.Media.GradientStop> collection);
new System.Windows.Media.GradientStopCollection : seq<System.Windows.Media.GradientStop> -> System.Windows.Media.GradientStopCollection
Public Sub New (collection As IEnumerable(Of GradientStop))

パラメーター

collection
IEnumerable<GradientStop>

コピーするコレクション。

例外

collectionnullです。

適用対象

GradientStopCollection(Int32)

指定した数の項目を最初に格納できる GradientStopCollection クラスの新しいインスタンスを初期化します。

public:
 GradientStopCollection(int capacity);
public GradientStopCollection (int capacity);
new System.Windows.Media.GradientStopCollection : int -> System.Windows.Media.GradientStopCollection
Public Sub New (capacity As Integer)

パラメーター

capacity
Int32

このコレクションが最初に格納できる GradientStop オブジェクトの数。

適用対象