Files
TSOffice/funcext/TSOffice/word/_WordGetFont.tsf
T
2023-05-16 16:49:34 +08:00

11 lines
270 B
Plaintext

Function _WordGetFont(prop, value);
Begin
crun := TOfficeApi().GetCurrentRun();
node := crun.Node().FirstChildElement('w:rPr');
rPr := TOfficeObj('TwrPr');
rPr.InitRootNode(node);
value := rPr.Value(prop);
if not ifnil(value) then return true;
return false;
End;