Show / Hide Table of Contents

Class RangeAddress

Adress over a range

Inheritance
System.Object
RangeAddress
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: OfficeOpenXml.FormulaParsing.ExcelUtilities
Assembly: EPPlus.dll
Syntax
public class RangeAddress

Constructors

RangeAddress()

Constructor for empty address

Declaration
public RangeAddress()

Properties

Empty

Empty

Declaration
public static RangeAddress Empty { get; }
Property Value
Type Description
RangeAddress

FromCol

From Column

Declaration
public int FromCol { get; }
Property Value
Type Description
System.Int32

FromRow

From row

Declaration
public int FromRow { get; }
Property Value
Type Description
System.Int32

ToCol

To Column

Declaration
public int ToCol { get; }
Property Value
Type Description
System.Int32

ToRow

To row

Declaration
public int ToRow { get; }
Property Value
Type Description
System.Int32

Worksheet

Worksheet

Declaration
public string Worksheet { get; }
Property Value
Type Description
System.String

Methods

CollidesWith(RangeAddress)

Returns true if this range collides (full or partly) with the supplied range

Declaration
public bool CollidesWith(RangeAddress other)
Parameters
Type Name Description
RangeAddress other

The range to check

Returns
Type Description
System.Boolean

ToString()

To string

Declaration
public override string ToString()
Returns
Type Description
System.String
Overrides
System.Object.ToString()
In This Article
Back to top Generated by DocFX