API Reference
Class
ExcelWorksheetMergeResult
Describes a completed worksheet merge operation.
Inheritance
- Object
- ExcelWorksheetMergeResult
Usage
This type appears in these public API surfaces even when no hand-authored example is attached directly to the page.
Returned or exposed by
Constructors
public ExcelWorksheetMergeResult(String sourceSheetName, String targetSheetName, String sourceRange, String targetRange, Int32 rowsCopied, Int32 columnsCopied, Boolean headerSkipped) #Creates a merge result.
Parameters
- sourceSheetName System.String
- targetSheetName System.String
- sourceRange System.String
- targetRange System.String
- rowsCopied System.Int32
- columnsCopied System.Int32
- headerSkipped System.Boolean
Inherited Methods
public override Boolean Equals(Object obj) #Returns:
BooleanInherited from Object
Parameters
- obj Object
Properties
public String SourceSheetName { get; } #Source worksheet name.
public String TargetSheetName { get; } #Target worksheet name.
public String SourceRange { get; } #Source A1 range read by the merge operation.
public String TargetRange { get; } #Target A1 range occupied by copied cells.
public Int32 RowsCopied { get; } #Number of source rows copied.
public Int32 ColumnsCopied { get; } #Number of columns copied.
public Boolean HeaderSkipped { get; } #Whether the first source row was skipped as a header.