Struct RangeDefinition
Represents the size of a range
Inherited Members
System.ValueType.Equals(System.Object)
System.ValueType.GetHashCode()
System.ValueType.ToString()
System.Object.Equals(System.Object, System.Object)
System.Object.GetType()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: OfficeOpenXml.FormulaParsing.Ranges
Assembly: EPPlus.dll
Syntax
public struct RangeDefinition
Constructors
RangeDefinition(Int16, Int32, Int16, Int32)
Constructor
Declaration
public RangeDefinition(short fromCol, int fromRow, short toCol, int toRow)
Parameters
Type | Name | Description |
---|---|---|
System.Int16 | fromCol | From column |
System.Int32 | fromRow | From row |
System.Int16 | toCol | To column |
System.Int32 | toRow | To row |
RangeDefinition(Int32, Int16)
Constructor
Declaration
public RangeDefinition(int nRows, short nCols)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | nRows | Number of rows |
System.Int16 | nCols | Number of columns |
Properties
NumberOfCols
Number of columns in the range
Declaration
public short NumberOfCols { readonly get; }
Property Value
Type | Description |
---|---|
System.Int16 |
NumberOfRows
Number of rows in the range
Declaration
public int NumberOfRows { readonly get; }
Property Value
Type | Description |
---|---|
System.Int32 |