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
복사가 시작되는 지정된 배열의 0 기반 인덱스입니다.
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
항목을 삽입할 지정된 0 기반 인덱스입니다.
item
ExtendedAttribute
이 컬렉션에 삽입할 지정된 항목입니다.
Remove(ExtendedAttribute)
이 컬렉션에서 특정 객체의 첫 번째 발생을 제거합니다.
public bool Remove(ExtendedAttribute item)
매개변수
item
ExtendedAttribute
제거할 지정된 객체입니다.
반환값
지정된 객체가 이 컬렉션에서 성공적으로 제거되면 true; 그렇지 않으면 false입니다.
RemoveAt(int)
지정된 인덱스의 항목을 제거합니다.
public void RemoveAt(int index)
매개변수
index
int
항목을 제거할 지정된 0 기반 인덱스입니다.