示例#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)
 { }
 /// <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));
 }
 /// <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
 /// <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)
 {
 }