RANGE

@brief Convert an Excel A1:B2 range into a `(first_row, first_col, last_row, last_col)` sequence.

Convert an Excel A1:B2 range into a `(first_row, first_col, last_row, last_col)` sequence.

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

@code worksheet_print_area(worksheet, 0, 0, 41, 10); // A1:K42.

// Same as: worksheet_print_area(worksheet, RANGE("A1:K42")); @endcode

extern (C)
RANGE
(
string rangeName
)

Meta