Represents a reference to a column in a spreadsheet.
Namespace: Radzen.Documents.Spreadsheet
Assembly: Radzen.Blazor.dll
public struct ColumnRefRepresents a reference to a column in a spreadsheet.
public ColumnRef(int column)
| Type | Name | Description |
|---|---|---|
| int | column |
Returns the column index for the column reference. The column index is zero-based, so the first column (A) corresponds to 0.
public int Column { get; }
| Type | Description |
|---|---|
| int | Returns the column index for the column reference. The column index is zero-based, so the first column (A) corresponds to 0. |
Checks if the column reference is equal to another column reference.
public bool Equals(Documents.Spreadsheet.ColumnRef other)
| Type | Name | Description |
|---|---|---|
| Documents.Spreadsheet.ColumnRef | other |
| Type | Description |
|---|---|
| bool |
Checks if the column reference is equal to another column reference.
public override bool Equals(object obj)
| Type | Name | Description |
|---|---|---|
| object | obj |
| Type | Description |
|---|---|
| bool |
Returns a string representation of the column reference in A1 notation. For example, if the column reference is (0), it returns "A:A";
public override string ToString()
| Type | Description |
|---|---|
| string |
Returns a string representation of the column reference in A1 notation. For example, if the column reference is (0), it returns "A:A";
public static string ToString(int column)
| Type | Name | Description |
|---|---|---|
| int | column |
| Type | Description |
|---|---|
| string |
public static bool operator !=(Documents.Spreadsheet.ColumnRef left, Documents.Spreadsheet.ColumnRef right)
| Type | Name | Description |
|---|---|---|
| Documents.Spreadsheet.ColumnRef | left | |
| Documents.Spreadsheet.ColumnRef | right |
| Type | Description |
|---|---|
| bool |
public static bool operator ==(Documents.Spreadsheet.ColumnRef left, Documents.Spreadsheet.ColumnRef right)
| Type | Name | Description |
|---|---|---|
| Documents.Spreadsheet.ColumnRef | left | |
| Documents.Spreadsheet.ColumnRef | right |
| Type | Description |
|---|---|
| bool |