Table of Contents
Tag Property

Gets or sets the object that contains data about the content.

Syntax
 public Object Tag { get; set; }
Remarks

Any type derived from the Object class can be assigned to this property. A common use for the Tag property is to store context information that is closely associated with the content. For example, you can store the current chapter information (such as chapter number and name) in the Tag property, and then later use this information to render page header and footer. See here for an example on how to use this property.

See Also