Read from XML reader.

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

Syntax

C#
public virtual void Read(
	XmlReader reader
)
Visual Basic
Public Overridable Sub Read ( _
	reader As XmlReader _
)

Parameters

reader
Type: System.Xml..::..XmlReader
The XML reader that holds the data from which this layout object is read.

Remarks

Override this method to implement custom XML reading. When called, the reader is positioned on the start element associated with the type. When the method finishes, the reader must be positioned on the first XML node after the end element (i.e. make sure you consume the end element).

See Also