跳到主要内容

get

  • 读取指定单元格

声明

mixed get(int row, int column, bool is_to_str = false)

参数

参数名描述
row单元格行号
column单元格列号
is_to_str数据是否转换为字符串

返回值

返回指定单元个数据

使用方式

// 获取在单元格(1, 1)处的数据
excel_obj.get(1, 1);

返回文档