Delphi/CB
•  Greatis •  Security •  AppDatabase •  Utilities •  Visual Basic • .NET •  just4fun
Delphi / C++ Builder
Components, utilities and tips for Delphi and C++ Builder developers
Main features
  • Compatibility with Delphi 2007!
  • Customizable fonts and colors
  • Three paint styles
  • Expandable property editors
  • Ready-to-use inspector components
  • TPropertyInterface component
  • more features...
    More...
    FAQ
    Download
    Order
    See also
    Related products
    Ultimate Pack  hot!
    Image Editor  new!
    Runtime Fusion
    Form Designer
    Object Inspector
    Print Suite Pro
    Commented Image
    Delphi Toys
    WinDowse
    Delphi Bonus
    TMS Scripter Studio
    Form Designer VB
    Form Designer .NET

    Related links
    Win32.hlp online version new!
    MegaDetailed.NET
    Delphi Tips
    Outsourcing

    Special
    Free Software Promotion
    Offers for Resellers
    Our clients
    Alventis
    Home Download Order FAQ Support  
    Object Inspector - TPropertyInterface
    TPropertyInterface component allows to access any property and event of any component at runtime.

    Main features:
    • Full information about each property through special TProperty class
    • Easy access property value by special properties (AsString, AsInteger, etc.)
    • Finding property by name and full name
    Examples of using:
    
    uses ..., TypInfo, PropList, PropIntf;
    
    var
      i: Integer;
      P: TProperty;
    
    begin
      with PropertyInterface do
      begin
        Root:=Self;
        Instance:=Edit;
        // finding property by name
        P:=FindProperty('Color');
        if Assigned(P) then P.AsInteger:=clRed;
        // finding property by full name
        P:=FindProperty('Font.Style.fsBold');
        if Assigned(P) then P.AsBoolean:=True;
        // setting all Boolean properties to True
        for i:=0 to Pred(Count) do
          if Properties[i].PropType=TypeInfo(Boolean) then 
            Properties[i].AsBoolean:=True;
      end;
    
    end;
    
    
    Hot Offer
    Save your money!
    Newsletters
    Subscribe to our news!    Subscribe to our news!

    Greatis Software Greatis | Security | AppDatabase | Utilities | Delphi/CB | Visual Basic | .NET | just4fun

    Contacts | Add to Favorites | Recommend to a Friend | Privacy Policy | Copyright © 1998-2008 Greatis Software