Show / Hide Table of Contents

Class ExcelCellAddress

A single cell address

Inheritance
System.Object
ExcelCellAddress
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Experior.Core.Data.OfficeOpenXml
Assembly: Experior.Core.dll
Syntax
public class ExcelCellAddress

Constructors

ExcelCellAddress()

Declaration
public ExcelCellAddress()

ExcelCellAddress(Int32, Int32)

Initializes a new instance of the ExcelCellAddress class.

Declaration
public ExcelCellAddress(int row, int column)
Parameters
Type Name Description
System.Int32 row

The row.

System.Int32 column

The column.

ExcelCellAddress(String)

Initializes a new instance of the ExcelCellAddress class.

Declaration
public ExcelCellAddress(string address)
Parameters
Type Name Description
System.String address

The address

Properties

Address

Celladdress

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

Column

Column

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

IsRef

If the address is an invalid reference (#REF!)

Declaration
public bool IsRef { get; }
Property Value
Type Description
System.Boolean

Row

Row

Declaration
public int Row { get; }
Property Value
Type Description
System.Int32
Back to top Generated by DocFX