Class ExtendedAttributeCollection
Namespace: Aspose.Tasks
Assembly: Aspose.Tasks.dll (25.2.0)
Aspose.Tasks.ExtendedAttribute オブジェクトのコレクションを表します。
public class ExtendedAttributeCollection : IList<extendedattribute>, ICollection<extendedattribute>, IEnumerable<extendedattribute>, IEnumerable
継承
object ← ExtendedAttributeCollection
実装
IList<extendedattribute>, ICollection<extendedattribute>, IEnumerable<extendedattribute>, IEnumerable
継承されたメンバー
object.GetType(), object.MemberwiseClone(), object.ToString(), object.Equals(object?), object.Equals(object?, object?), object.ReferenceEquals(object?, object?), object.GetHashCode()
プロパティ
Count
このコレクションに含まれる要素の数を取得します。
public int Count { get; }
プロパティ値
IsReadOnly
このコレクションが読み取り専用かどうかを示す値を取得します。そうでない場合は false。
public bool IsReadOnly { get; }
プロパティ値
this[int]
指定されたインデックスの要素を取得または設定します。
public ExtendedAttribute this[int index] { get; set; }
プロパティ値
メソッド
Add(ExtendedAttribute)
指定されたアイテムをこのコレクションに追加します。
public void Add(ExtendedAttribute item)
パラメーター
item
ExtendedAttribute
このコレクションに追加する指定されたアイテム。
Clear()
このコレクションからすべてのアイテムを削除します。
public void Clear()
Contains(ExtendedAttribute)
指定されたアイテムがこのコレクションに存在する場合は true を返し、そうでない場合は false を返します。
public bool Contains(ExtendedAttribute item)
パラメーター
item
ExtendedAttribute
検索する指定されたアイテム。
戻り値
指定されたアイテムがこのコレクションに存在する場合は true; そうでない場合は false。
CopyTo(ExtendedAttribute[], int)
このコレクションの要素を指定された配列にコピーし、指定された配列インデックスから開始します。
public void CopyTo(ExtendedAttribute[] array, int arrayIndex)
パラメーター
array
ExtendedAttribute[]
要素をコピーする指定された一次元配列。
arrayIndex
int
コピーを開始する指定された配列のゼロベースインデックス。
GetEnumerator()
このコレクションの列挙子を返します。
public IEnumerator<extendedattribute> GetEnumerator()
戻り値
IEnumerator<ExtendedAttribute>
このコレクションの列挙子。
IndexOf(ExtendedAttribute)
このコレクション内の指定されたアイテムのインデックスを決定します。
public int IndexOf(ExtendedAttribute item)
パラメーター
item
ExtendedAttribute
このコレクション内で位置を特定する指定されたアイテム。
戻り値
指定されたアイテムが見つかった場合のインデックス。そうでない場合は -1。
Insert(int, ExtendedAttribute)
指定されたインデックスに指定されたアイテムを挿入します。
public void Insert(int index, ExtendedAttribute item)
パラメーター
index
int
アイテムを挿入する指定されたゼロベースインデックス。
item
ExtendedAttribute
このコレクションに挿入する指定されたアイテム。
Remove(ExtendedAttribute)
このコレクションから特定のオブジェクトの最初の出現を削除します。
public bool Remove(ExtendedAttribute item)
パラメーター
item
ExtendedAttribute
削除する指定されたオブジェクト。
戻り値
指定されたオブジェクトがこのコレクションから正常に削除された場合は true; そうでない場合は false。
RemoveAt(int)
指定されたインデックスのアイテムを削除します。
public void RemoveAt(int index)
パラメーター
index
int
アイテムを削除する指定されたゼロベースインデックス。