forked from fanruan/finekit
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
391 B
14 lines
391 B
package com.fanruan.api.design; |
|
|
|
import com.fr.base.TableData; |
|
import com.fr.design.data.datapane.preview.PreviewTablePane; |
|
|
|
public class DesignKit { |
|
/** |
|
* 直接预览数据集,没有实际值及显示值 |
|
* @param tableData 数据集 |
|
*/ |
|
public static void previewTableData(TableData tableData){ |
|
PreviewTablePane.previewTableData(tableData, -1, -1); |
|
} |
|
}
|
|
|