Scalabium Software

SMExport/SMImport suites

Knowledge for your independence'.
Home Delphi and C++Builder tips


#74: How can I receive the list of published properties of component (part 2)?

Yesterday I posted the tip about list of published properties. Today I found the second method to do a same but this method is easy:

var
  i, j: Integer;
  PropList: TPropList;
begin
  GetPropList(Obj.ClassInfo, TypeKinds, @PropList);
  j := High(PropList);
  i := 0;
  while (i < j) and Assigned(PropList[i]) do
  begin
    lbInspector.Items[i] := PropList[i].Name + ': ' + PropList[i].PropType^.Name;
    Inc(i)
  end
end;

where
TypeKinds := tkProperties
or
TypeKinds := tkMethods


Published: April 20, 2000

See also
 
Paradox to MS Access converter
ABA Picture Convert
Metafile Convert
DBISAM Viewer
DBExport tools
ABA Document Convert
Paradox ActiveX
MAPIMail
Fast Document Viewer
SMMsg suite
 
 
Contact to webmaster

 

Borland Software Code Gear Scalabium Delphi tips

Copyright© 1998-2013, Scalabium Software. All rights reserved.
webmaster@scalabium.com

SMExport advertising