TextEffectCollection 构造函数

定义

初始化 TextEffectCollection 类的新实例。

重载

TextEffectCollection()

初始化 TextEffectCollection 类的新实例。

TextEffectCollection(IEnumerable<TextEffect>)

初始化 TextEffectCollection 类的新实例。

TextEffectCollection(Int32)

初始化新 TextEffectCollection 实例,该实例为空并且具有指定的初始容量。

TextEffectCollection()

初始化 TextEffectCollection 类的新实例。

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

适用于

TextEffectCollection(IEnumerable<TextEffect>)

初始化 TextEffectCollection 类的新实例。

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

参数

collection
IEnumerable<TextEffect>

IEnumerable 类型的枚举数。

适用于

TextEffectCollection(Int32)

初始化新 TextEffectCollection 实例,该实例为空并且具有指定的初始容量。

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

参数

capacity
Int32

新集合最初可存储的元素数。

适用于