C# Class Novacode.DocXElement

All DocX types are derived from DocXElement. This class contains properties which every element of a DocX must contain.
Show file Open project: WordDocX/DocX

Private Properties

Property Type Description

Public Methods

Method Description
DocXElement ( DocX document, System.Xml.Linq.XElement xml ) : System

Store both the document and xml so that they can be accessed by derived types.

Method Details

DocXElement() public method

Store both the document and xml so that they can be accessed by derived types.
public DocXElement ( DocX document, System.Xml.Linq.XElement xml ) : System
document DocX The document that this element belongs to.
xml System.Xml.Linq.XElement The Xml that gives this element substance
return System