Registriert seit: 3. Jan 2007
Ort: Dresden
3.443 Beiträge
Delphi 7 Enterprise
|
Re: Anzahl der Ord in Propertys herausfinden
5. Mai 2008, 20:13
In etwa so:
Delphi-Quellcode:
var PropInfo:PPropInfo;
TypeData:PTypeData;
begin
PropInfo:=getpropinfo(memo1,'ScrollBars');
TypeData:=getTypeData(PropInfo^.PropType^);
memo1.lines.add(inttostr(TypeData^.MinValue));
memo1.lines.add(inttostr(TypeData^.MaxValue));
Dieser Beitrag ist für Jugendliche unter 18 Jahren nicht geeignet.
|