From af7d5339c834d31d8e1ea44887fe8eb84a28d137 Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Sun, 5 Oct 2025 08:51:51 -0400 Subject: [PATCH] convenience method --- xlsx.d | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/xlsx.d b/xlsx.d index 5c16f08..32d3a17 100644 --- a/xlsx.d +++ b/xlsx.d @@ -886,6 +886,10 @@ struct CellReference { return CellReference(ret); } + string toString() { + return name; + } + int toColumnIndex() { size_t endSlice = name.length; foreach(idx, ch; name) {