Interface IParagraphItemCollection
Paragraph item collection interface
Inherited Members
System.Collections.ICollection.CopyTo(System.Array, System.Int32)
System.Collections.ICollection.Count
System.Collections.ICollection.IsSynchronized
System.Collections.ICollection.SyncRoot
System.Collections.IEnumerable.GetEnumerator()
System.Collections.IList.Add(System.Object)
System.Collections.IList.Clear()
System.Collections.IList.Contains(System.Object)
System.Collections.IList.IndexOf(System.Object)
System.Collections.IList.Insert(System.Int32, System.Object)
System.Collections.IList.IsFixedSize
System.Collections.IList.IsReadOnly
System.Collections.IList.Remove(System.Object)
System.Collections.IList.RemoveAt(System.Int32)
Namespace: Syncfusion.DLS.Collections
Assembly: Syncfusion.DLS.Base.dll
Syntax
public interface IParagraphItemCollection : ICollectionBase, IList, ICollection, IEnumerable
Properties
Item[Int32]
Gets item by index
Declaration
IParagraphItem this[int index] { get; }
Parameters
| Type | Name | Description |
|---|---|---|
| System.Int32 | index |
Property Value
| Type |
|---|
| IParagraphItem |
Methods
Add(IParagraphItem)
Adds paragraph item
Declaration
int Add(IParagraphItem pItem)
Parameters
| Type | Name | Description |
|---|---|---|
| IParagraphItem | pItem |
Returns
| Type |
|---|
| System.Int32 |
IndexOf(IParagraphItem)
Gets index of specified paragraph item
Declaration
int IndexOf(IParagraphItem item)
Parameters
| Type | Name | Description |
|---|---|---|
| IParagraphItem | item |
Returns
| Type |
|---|
| System.Int32 |
Insert(Int32, IParagraphItem)
Inserts an paragraph item to collection
Declaration
void Insert(int index, IParagraphItem pItem)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Int32 | index | |
| IParagraphItem | pItem |
Remove(IParagraphItem)
Removes an paragraph item from collection
Declaration
void Remove(IParagraphItem item)
Parameters
| Type | Name | Description |
|---|---|---|
| IParagraphItem | item |