예제 #1
0
 /// <summary>
 /// Initializes a new instance of the Axis class with the specified parent.
 /// </summary>
 internal Axis(DocumentObject parent) : base(parent) {}
예제 #2
0
 /// <summary>
 /// Initializes a new instance of the XValues class with the specified parent.
 /// </summary>
 internal XValues(DocumentObject parent) : base(parent) {}
 /// <summary>
 /// Searches for the specified object and returns the zero-based index of the first occurrence.
 /// </summary>
 public int IndexOf(DocumentObject val)
 {
   return this.elements.IndexOf(val);
 }
 /// <summary>
 /// Initializes a new instance of the DocumentObjectCollection class with the specified parent.
 /// </summary>
 internal DocumentObjectCollection(DocumentObject parent) : base(parent)
 {
   this.elements = new ArrayList();
 }
예제 #5
0
파일: Font.cs 프로젝트: Sl0vi/PDFsharp
 /// <summary>
 /// Initializes a new instance of the Font class with the specified parent.
 /// </summary>
 internal Font(DocumentObject parent)
     : base(parent)
 { }
예제 #6
0
 /// <summary>
 /// Initializes a new instance of the SeriesCollection class with the specified parent.
 /// </summary>
 internal SeriesCollection(DocumentObject parent) : base(parent) {}
예제 #7
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();
 }
예제 #8
0
 /// <summary>
 /// Initializes a new instance of the DataLabel class with the specified parent.
 /// </summary>
 internal DataLabel(DocumentObject parent) : base(parent) {}
예제 #9
0
 /// <summary>
 /// Inserts an element into the collection at the specified position.
 /// </summary>
 public virtual void InsertObject(int index, DocumentObject val)
 {
     this.elements.Insert(index, val);
 }
예제 #10
0
 /// <summary>
 /// Searches for the specified object and returns the zero-based index of the first occurrence.
 /// </summary>
 public int IndexOf(DocumentObject val)
 {
     return(this.elements.IndexOf(val));
 }
예제 #11
0
 /// <summary>
 /// Initializes a new instance of the DocumentObjectCollection class with the specified parent.
 /// </summary>
 internal DocumentObjectCollection(DocumentObject parent)
     : base(parent)
 {
     _elements = new List <DocumentObject>();
 }
예제 #12
0
 /// <summary>
 /// Initializes a new instance of the FillFormat class with the specified parent.
 /// </summary>
 internal FillFormat(DocumentObject parent) : base(parent)
 {
 }
예제 #13
0
 /// <summary>
 /// Initializes a new instance of the DocumentObject class with the specified parent.
 /// </summary>
 public DocumentObject(DocumentObject parent)
 {
   this.parent = parent;
 }
예제 #14
0
 /// <summary>
 /// Initializes a new instance of the LineFormat class with the specified parent.
 /// </summary>
 internal LineFormat(DocumentObject parent) : base(parent) { }
예제 #15
0
 /// <summary>
 /// Initializes a new instance of the Gridlines class with the specified parent.
 /// </summary>
 internal Gridlines(DocumentObject parent) : base(parent)
 {
 }
예제 #16
0
 /// <summary>
 /// Initializes a new instance of the DocumentObjectCollection class with the specified parent.
 /// </summary>
 internal DocumentObjectCollection(DocumentObject parent)
     : base(parent)
 {
     _elements = new List<DocumentObject>();
 }
예제 #17
0
 /// <summary>
 /// Initializes a new instance of the TickLabels class with the specified parent.
 /// </summary>
 internal TickLabels(DocumentObject parent) : base(parent)
 {
 }
예제 #18
0
파일: PlotArea.cs 프로젝트: Sl0vi/PDFsharp
 /// <summary>
 /// Initializes a new instance of the PlotArea class with the specified parent.
 /// </summary>
 internal PlotArea(DocumentObject parent) : base(parent) { }
예제 #19
0
 /// <summary>
 /// Initializes a new instance of the Chart class with the specified parent.
 /// </summary>
 internal Chart(DocumentObject parent) : base(parent)
 {
 }
예제 #20
0
 /// <summary>
 /// Initializes a new instance of the FillFormat class with the specified parent.
 /// </summary>
 internal FillFormat(DocumentObject parent) : base(parent) {}
예제 #21
0
 /// <summary>
 /// Initializes a new instance of the LineFormat class with the specified parent.
 /// </summary>
 internal LineFormat(DocumentObject parent) : base(parent)
 {
 }
 /// <summary>
 /// Inserts an element into the collection at the specified position.
 /// </summary>
 public virtual void InsertObject(int index, DocumentObject val)
 {
   this.elements.Insert(index, val);
 }
예제 #23
0
 /// <summary>
 /// Initializes a new instance of the Axis class with the specified parent.
 /// </summary>
 internal Axis(DocumentObject parent) : base(parent)
 {
 }
 /// <summary>
 /// Adds the specified document object to the collection.
 /// </summary>
 public virtual void Add(DocumentObject value)
 {
   if (value != null)
     value.parent = this;
   this.elements.Add(value);
 }
예제 #25
0
 /// <summary>
 /// Initializes a new instance of the PlotArea class with the specified parent.
 /// </summary>
 internal PlotArea(DocumentObject parent) : base(parent)
 {
 }
예제 #26
0
 /// <summary>
 /// Initializes a new instance of the TickLabels class with the specified parent.
 /// </summary>
 internal TickLabels(DocumentObject parent) : base(parent) { }
예제 #27
0
 /// <summary>
 /// Initializes a new instance of the Legend class with the specified parent.
 /// </summary>
 internal Legend(DocumentObject parent) : base(parent)
 {
 }
예제 #28
0
 /// <summary>
 /// Initializes a new instance of the SeriesElements class with the specified parent.
 /// </summary>
 internal SeriesElements(DocumentObject parent) : base(parent) {}
예제 #29
0
 /// <summary>
 /// Initializes a new instance of the Font class with the specified parent.
 /// </summary>
 internal Font(DocumentObject parent)
     : base(parent)
 {
 }
예제 #30
0
 /// <summary>
 /// Initializes a new instance of the Legend class with the specified parent.
 /// </summary>
 internal Legend(DocumentObject parent) : base(parent) {}
예제 #31
0
 /// <summary>
 /// Initializes a new instance of the Gridlines class with the specified parent.
 /// </summary>
 internal Gridlines(DocumentObject parent) : base(parent) {}
예제 #32
0
 /// <summary>
 /// Initializes a new instance of the ChartObject class with the specified parent.
 /// </summary>
 internal ChartObject(DocumentObject parent) : base(parent) {}
예제 #33
0
 /// <summary>
 /// Initializes a new instance of the SeriesElements class with the specified parent.
 /// </summary>
 internal SeriesElements(DocumentObject parent) : base(parent)
 {
 }