COLS

@brief Convert an Excel A:B column range into a (col1, col2) pair.

Convert an Excel A:B column range into a (col1, col2) pair.

This is a little syntactic shortcut to help with worksheet layout:

@code worksheet_set_column(worksheet, COLS("B:D"), 20, NULL, NULL);

// Same as: worksheet_set_column(worksheet, 1, 3, 20, NULL, NULL); @endcode

extern (C)
COLS
(
string colName
)

Meta