xlsxio

Undocumented in source.

Members

Aliases

XLSXIOCHAR
alias XLSXIOCHAR = wchar_t
Undocumented in source.
XLSXIOCHAR
alias XLSXIOCHAR = char
Undocumented in source.
wchar_t
alias wchar_t = wchar
Undocumented in source.
xlsxioread_list_sheets_callback_fn
alias xlsxioread_list_sheets_callback_fn = int function(const(XLSXIOCHAR)* name, void* callbackdata)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
xlsxioread_process_cell_callback_fn
alias xlsxioread_process_cell_callback_fn = int function(size_t row, size_t col, const(XLSXIOCHAR)* value, void* callbackdata)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
xlsxioread_process_row_callback_fn
alias xlsxioread_process_row_callback_fn = int function(size_t row, size_t maxcol, void* callbackdata)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
xlsxioreader
alias xlsxioreader = xlsxio_read_struct*
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
xlsxioreadersheet
alias xlsxioreadersheet = xlsxio_read_sheet_struct*
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
xlsxioreadersheetlist
alias xlsxioreadersheetlist = xlsxio_read_sheetlist_struct*
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
xlsxiowriter
alias xlsxiowriter = xlsxio_write_struct*
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.

Functions

xlsxioread_close
void xlsxioread_close(xlsxioreader handle)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
xlsxioread_get_version
void xlsxioread_get_version(int* pmajor, int* pminor, int* pmicro)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
xlsxioread_get_version_string
const(XLSXIOCHAR)* xlsxioread_get_version_string()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
xlsxioread_list_sheets
void xlsxioread_list_sheets(xlsxioreader handle, xlsxioread_list_sheets_callback_fn callback, void* callbackdata)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
xlsxioread_open
xlsxioreader xlsxioread_open(const(char*) filename)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
xlsxioread_open_filehandle
xlsxioreader xlsxioread_open_filehandle(int filehandle)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
xlsxioread_open_memory
xlsxioreader xlsxioread_open_memory(void* data, ulong datalen, int freedata)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
xlsxioread_process
int xlsxioread_process(xlsxioreader handle, const(XLSXIOCHAR)* sheetname, uint flags, xlsxioread_process_cell_callback_fn cell_callback, xlsxioread_process_row_callback_fn row_callback, void* callbackdata)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
xlsxioread_sheet_close
void xlsxioread_sheet_close(xlsxioreadersheet sheethandle)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
xlsxioread_sheet_next_cell
XLSXIOCHAR* xlsxioread_sheet_next_cell(xlsxioreadersheet sheethandle)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
xlsxioread_sheet_next_cell_datetime
int xlsxioread_sheet_next_cell_datetime(xlsxioreadersheet sheethandle, time_t* pvalue)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
xlsxioread_sheet_next_cell_float
int xlsxioread_sheet_next_cell_float(xlsxioreadersheet sheethandle, double* pvalue)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
xlsxioread_sheet_next_cell_int
int xlsxioread_sheet_next_cell_int(xlsxioreadersheet sheethandle, long* pvalue)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
xlsxioread_sheet_next_cell_string
int xlsxioread_sheet_next_cell_string(xlsxioreadersheet sheethandle, XLSXIOCHAR** pvalue)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
xlsxioread_sheet_next_row
int xlsxioread_sheet_next_row(xlsxioreadersheet sheethandle)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
xlsxioread_sheet_open
xlsxioreadersheet xlsxioread_sheet_open(xlsxioreader handle, const(XLSXIOCHAR)* sheetname, uint flags)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
xlsxioread_sheetlist_close
void xlsxioread_sheetlist_close(xlsxioreadersheetlist sheetlisthandle)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
xlsxioread_sheetlist_next
const(XLSXIOCHAR)* xlsxioread_sheetlist_next(xlsxioreadersheetlist sheetlisthandle)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
xlsxioread_sheetlist_open
xlsxioreadersheetlist xlsxioread_sheetlist_open(xlsxioreader handle)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
xlsxiowrite_add_cell_datetime
void xlsxiowrite_add_cell_datetime(xlsxiowriter handle, time_t value)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
xlsxiowrite_add_cell_float
void xlsxiowrite_add_cell_float(xlsxiowriter handle, double value)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
xlsxiowrite_add_cell_int
void xlsxiowrite_add_cell_int(xlsxiowriter handle, long value)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
xlsxiowrite_add_cell_string
void xlsxiowrite_add_cell_string(xlsxiowriter handle, const(char)* value)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
xlsxiowrite_add_column
void xlsxiowrite_add_column(xlsxiowriter handle, const(char)* name, int width)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
xlsxiowrite_close
int xlsxiowrite_close(xlsxiowriter handle)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
xlsxiowrite_get_version
void xlsxiowrite_get_version(int* pmajor, int* pminor, int* pmicro)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
xlsxiowrite_get_version_string
const(char)* xlsxiowrite_get_version_string()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
xlsxiowrite_next_row
void xlsxiowrite_next_row(xlsxiowriter handle)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
xlsxiowrite_open
xlsxiowriter xlsxiowrite_open(const(char)* filename, const(char)* sheetname)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
xlsxiowrite_set_detection_rows
void xlsxiowrite_set_detection_rows(xlsxiowriter handle, size_t rows)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
xlsxiowrite_set_row_height
void xlsxiowrite_set_row_height(xlsxiowriter handle, size_t height)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.

Manifest constants

XLSXIOREAD_SKIP_ALL_EMPTY
enum XLSXIOREAD_SKIP_ALL_EMPTY;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
XLSXIOREAD_SKIP_EMPTY_CELLS
enum XLSXIOREAD_SKIP_EMPTY_CELLS;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
XLSXIOREAD_SKIP_EMPTY_ROWS
enum XLSXIOREAD_SKIP_EMPTY_ROWS;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
XLSXIOREAD_SKIP_EXTRA_CELLS
enum XLSXIOREAD_SKIP_EXTRA_CELLS;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
XLSXIOREAD_SKIP_NONE
enum XLSXIOREAD_SKIP_NONE;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.

Structs

xlsxio_read_sheet_struct
struct xlsxio_read_sheet_struct
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
xlsxio_read_sheetlist_struct
struct xlsxio_read_sheetlist_struct
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
xlsxio_read_struct
struct xlsxio_read_struct
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
xlsxio_write_struct
struct xlsxio_write_struct
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.

Meta