Class ActionCollection

ActionCollection 类

动作集合

public sealed class ActionCollection : ICollection<PdfAction>

属性

名称描述
Count { get; }集合中动作的数量。
IsReadOnly { get; }如果集合是只读的,则返回 true。
IsSynchronized { get; }如果对象是同步的,则返回 true。
Item { get; }通过索引获取动作。
SyncRoot { get; }获取同步对象。

方法

名称描述
Add(PdfAction)将新动作添加到集合中。
Clear()清空集合。
Contains(PdfAction)如果给定项存在于集合中,则返回 true。
CopyTo(PdfAction[], int)将动作数组复制到集合中。
Delete()删除所有动作。
Delete(int)根据索引从集合中移除动作。
GetEnumerator()返回集合的枚举器。
Remove(PdfAction)从集合中移除项。

另见