2 Star 5 Fork 3

szlbz/QFComponent

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
PublicDefinition.pas 1.17 KB
一键复制 编辑 原始数据 按行查看 历史
szlbz 提交于 2024-05-05 11:08 . Add files via upload
unit PublicDefinition;
interface
uses
Classes, SysUtils,Controls,FPCanvas, Graphics,db;
type
TCell = record
x:integer;
y:integer;
Width:integer;
Height:integer;
ColMerge:integer; //从当前单元格向右合并n个单元格
RowMerge:integer; //从当单元格向下合并n个单元格
DispType:integer;//0--文字 1--图像 2-bookmark1 3-bookmark2 4--link 5--控件
str:string[255];
URL:string[200];
bookmarkstr:string[7];
Color:TColor;
Align:byte;
FontName:string[20];
FontSize:integer;
FontColor:TColor;
FontStyle:byte;
ComponentType:string;
ComponentName:string;
ComponentDataSource:TDataSource;
ComponentDataFieldName:TField;
DrawTop : Boolean; // 画顶线
DrawLeft : Boolean; // 画左线
DrawBottom : Boolean; // 画底线
DrawRight : Boolean; // 画右线
TopLineStyle:TFPPenStyle;
LeftLineStyle:TFPPenStyle;
BottomLineStyle:TFPPenStyle;
RightLineStyle:TFPPenStyle;
LineStyle:TFPPenStyle;
Visible:Boolean;//
end;
var
QFCellProperReturn:Boolean;
implementation
end.
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Pascal
1
https://gitee.com/szlbz/qfcomponent.git
git@gitee.com:szlbz/qfcomponent.git
szlbz
qfcomponent
QFComponent
main

搜索帮助