Click or drag to resize
NanoXLSX

Address Class

Struct representing the cell address as column and row (zero based)
Inheritance Hierarchy
SystemObject
  SystemValueType
    NanoXLSXAddress

Namespace: NanoXLSX
Assembly: NanoXLSX (in NanoXLSX.dll) Version: 2.6.2+7f12a949130e0be1e987e553d2d08c083176cdca
Syntax
C#
public sealed class Address : ValueType, 
	IEquatable<Address>, IComparable<Address>

The Address type exposes the following members.

Constructors
 NameDescription
Public methodAddress(String) Constructor with address as string. If no referencing modifiers ($) are defined, the address is of referencing type default (e.g. 'C23')
Public methodAddress(Int32, Int32) Constructor with row and column as arguments. The referencing type of the address is default (e.g. 'C20')
Public methodAddress(String, CellAddressType) Constructor with address as string. All referencing modifiers ($) are ignored and only the defined referencing type considered
Public methodAddress(Int32, Int32, CellAddressType) Constructor with row and column as arguments. All referencing modifiers ($) are ignored and only the defined referencing type considered
Top
Methods
 NameDescription
Public methodCompareTo Compares two addresses using the column and row numbers
Protected methodCopy Creates a (dereferenced, if applicable) deep copy of this address
Public methodEquals(Address) Compares two addresses whether they are equal
Public methodEquals(Object) Compares two objects whether they are addresses and equal
(Overrides ValueTypeEquals(Object))
Protected methodFinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object)
Public methodGetAddress Returns the combined Address
Public methodGetColumn Gets the column address (A - XFD)
Public methodGetHashCode Gets the hash code based on the string representation of the address
(Overrides ValueTypeGetHashCode)
Public methodGetTypeGets the Type of the current instance.
(Inherited from Object)
Protected methodMemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
Public methodToString Overwritten ToString method
(Overrides ValueTypeToString)
Top
Operators
Fields
 NameDescription
Public fieldColumn Column number (zero based)
Public fieldRow Row number (zero based)
Public fieldType Referencing type of the address
Top
See Also