Delphi中判断控件是否有某个属性
发布网友
发布时间:2022-05-03 11:32
我来回答
共1个回答
热心网友
时间:2022-06-19 12:54
uses typinfo;
var
i: Integer;
begin
for i := 0 to Form1.ControlsCount-1 do
if IsPublishedProp(Form1.Controls[i], 'caption') then
SetPropValue(Form1.Controls[i], 'rcaption', true);
end;