Exemplo n.º 1
0
 /// <summary>
 /// Creates an ExcelCellElement instance.
 /// </summary>
 /// <param name="windowHandle">The window handle.</param>
 /// <param name="cellInfo">The cell info.</param>
 /// <param name="manager">The technology manager.</param>
 internal ExcelCellElement(IntPtr windowHandle, ExcelCellInfo cellInfo, ExcelTechnologyManager manager)
     : base(windowHandle, manager)
 {
     this.CellInfo = cellInfo;
 }
Exemplo n.º 2
0
 /// <summary>
 /// Creates an ExcelElement.
 /// </summary>
 /// <param name="windowHandle">The window handle of this element.</param>
 /// <param name="manager">Reference to the manager of this element.</param>
 internal ExcelElement(IntPtr windowHandle, ExcelTechnologyManager manager)
 {
     this.windowHandle = windowHandle;
     this.technologyManager = manager;
 }
Exemplo n.º 3
0
 /// <summary>
 /// Creates the ExcelWorksheetElement.
 /// </summary>
 /// <param name="windowHandle">The window handle.</param>
 /// <param name="worksheetInfo">The worksheet info.</param>
 /// <param name="manager">The technology manager.</param>
 internal ExcelWorksheetElement(IntPtr windowHandle, ExcelWorksheetInfo worksheetInfo, ExcelTechnologyManager manager)
     : base(windowHandle, manager)
 {
     this.WorksheetInfo = worksheetInfo;
 }