Interface IWParagraphCollection
Represents a collection of IWParagraph.
Namespace: Syncfusion.DocIO.DLS
Assembly: Syncfusion.DocIO.Base.dll
Syntax
public interface IWParagraphCollection : IEntityCollectionBase, ICollectionBase, IEnumerable
Properties
Item[Int32]
Gets the IWParagraph at the specified index.
Declaration
WParagraph this[int index] { get; }
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | index |
Property Value
Type |
---|
WParagraph |
Methods
Add(IWParagraph)
Adds a paragraph to the end of collection.
Declaration
int Add(IWParagraph paragraph)
Parameters
Type | Name | Description |
---|---|---|
IWParagraph | paragraph | The paragraph. |
Returns
Type |
---|
System.Int32 |
IndexOf(IWParagraph)
Returns the zero-based index of the specified paragraph.
Declaration
int IndexOf(IWParagraph paragraph)
Parameters
Type | Name | Description |
---|---|---|
IWParagraph | paragraph | The paragraph. |
Returns
Type |
---|
System.Int32 |
Insert(Int32, IWParagraph)
Inserts a paragraph into collection at the specified index.
Declaration
void Insert(int index, IWParagraph paragraph)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | index | The index. |
IWParagraph | paragraph | The paragraph. |
RemoveAt(Int32)
Removes the paragraph at the specified index from the collection.
Declaration
void RemoveAt(int index)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | index | The index. |