支持表格固定高度

This commit is contained in:
csh
2024-11-04 15:42:29 +08:00
parent 535bdb20d4
commit 2d6632895b
3 changed files with 33 additions and 9 deletions
+12
View File
@@ -0,0 +1,12 @@
type TSTrProperty = class
function Create();
public
TrPr: TrPrUnitDecorator;
Height: real;
end;
function TSTrProperty.Create();
begin
{self.}TrPr := nil;
{self.}Height := 0;
end;