예제 #1
0
 /// <summary>
 /// Initializes a new instance of the PageBreak class with the specified parent.
 /// </summary>
 internal PageBreak(DocumentObject parent) : base(parent)
 {
 }
예제 #2
0
 /// <summary>
 /// Initializes a new instance of the Styles class with the specified parent.
 /// </summary>
 internal Styles(DocumentObject parent)
     : base(parent)
 {
     SetupStyles();
 }
예제 #3
0
 /// <summary>
 /// Initializes a new instance of the DocumentObject class with the specified parent.
 /// </summary>
 internal DocumentObject(DocumentObject parent)
 {
     Debug.Assert(parent != null, "Parent must not be null.");
     this.parent = parent;
 }
예제 #4
0
 /// <summary>
 /// Initializes a new instance of the Section class with the specified parent.
 /// </summary>
 internal Section(DocumentObject parent) : base(parent)
 {
 }
예제 #5
0
 /// <summary>
 /// Initializes a new instance of the Footnote class with the specified parent.
 /// </summary>
 internal Footnote(DocumentObject parent) : base(parent)
 {
 }
예제 #6
0
 /// <summary>
 /// Initializes a new instance of the Border class with the specified parent.
 /// </summary>
 internal Border(DocumentObject parent) : base(parent)
 {
 }
예제 #7
0
 /// <summary>
 /// Initializes a new instance of the Font class with the specified parent.
 /// </summary>
 internal Font(DocumentObject parent) : base(parent)
 {
 }
예제 #8
0
 /// <summary>
 /// Initializes a new instance of the DocumentInfo class with the specified parent.
 /// </summary>
 internal DocumentInfo(DocumentObject parent) : base(parent)
 {
 }
예제 #9
0
 /// <summary>
 /// Initializes a new instance of the Shading class with the specified parent.
 /// </summary>
 internal Shading(DocumentObject parent) : base(parent)
 {
 }
예제 #10
0
 /// <summary>
 /// Initializes a new instance of the DocumentObjectCollection class with the specified parent.
 /// </summary>
 internal DocumentObjectCollection(DocumentObject parent)
     : base(parent)
 {
     this.elements = new ArrayList();
 }
예제 #11
0
 /// <summary>
 /// Inserts the object into the collection and sets it's parent.
 /// </summary>
 public virtual void Add(DocumentObject value)
 {
     SetParent(value);
     this.elements.Add(value);
 }
예제 #12
0
 /// <summary>
 /// Determines the index of a specific item in the collection.
 /// </summary>
 public int IndexOf(DocumentObject val)
 {
     return(((IList)this).IndexOf(val));
 }
예제 #13
0
 /// <summary>
 /// Initializes a new instance of the FormattedText class with the specified parent.
 /// </summary>
 internal FormattedText(DocumentObject parent) : base(parent)
 {
 }