Show / Hide Table of Contents

Class ExcelAddress

Range address with the address property readonly

Inheritance
System.Object
ExcelCellBase
ExcelAddressBase
ExcelAddress
ExcelRangeBase
Inherited Members
ExcelAddressBase._address
ExcelAddressBase._fromRow
ExcelAddressBase._toRow
ExcelAddressBase._fromCol
ExcelAddressBase._toCol
ExcelAddressBase._wb
ExcelAddressBase._ws
ExcelAddressBase.AddressChange
ExcelAddressBase.End
ExcelAddressBase.IsName
ExcelAddressBase.Start
ExcelAddressBase.ToString()
ExcelAddressBase.GetAddress(String, String, String)
ExcelAddressBase.SetAddress(String)
ExcelAddressBase.Validate()
ExcelCellBase.GetAddress(Int32, Int32)
ExcelCellBase.GetAddress(Int32, Boolean, Int32, Boolean)
ExcelCellBase.GetAddress(Int32, Int32, Boolean)
ExcelCellBase.GetAddress(Int32, Int32, Int32, Int32)
ExcelCellBase.GetAddress(Int32, Int32, Int32, Int32, Boolean)
ExcelCellBase.GetFullAddress(String, String)
ExcelCellBase.IsValidCellAddress(String)
ExcelCellBase.TranslateFromR1C1(String, Int32, Int32)
ExcelCellBase.TranslateToR1C1(String, Int32, Int32)
ExcelCellBase.GetColumnLetter(Int32)
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 ExcelAddress : ExcelAddressBase

Constructors

ExcelAddress(Int32, Int32, Int32, Int32)

Declaration
public ExcelAddress(int fromRow, int fromCol, int toRow, int toColumn)
Parameters
Type Name Description
System.Int32 fromRow
System.Int32 fromCol
System.Int32 toRow
System.Int32 toColumn

ExcelAddress(String)

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

Properties

Address

The address for the range

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

Examples of addresses are "A1" "B1:C2" "A:A" "1:1" "A1:E2,G3:G5"

Back to top Generated by DocFX