Get or set a paragraph by it's ID.

Namespace: TallComponents.PDF.Layout.Paragraphs
Assembly: TallComponents.PDF.Layout (in TallComponents.PDF.Layout.dll) Version: 3.0.63.0

Syntax

C#
public Paragraph this[
	string id
] { get; set; }
Visual Basic
Public Default Property Item ( _
	id As String _
) As Paragraph
	Get
	Set

Parameters

id
Type: System..::..String

Remarks

Setting a paragraph with an ID that is not yet in the collection will throw an ArgumentOutOfRangeException. Use Add(Paragraph) to add a new paragraph.

See Also