Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
lazarus / usr / share / lazarus / 1.6 / components / lazreport / source / lr_propedit.pas
Size: Mime:
unit lr_propedit;

{$mode objfpc}{$H+}

interface

uses
  Classes, SysUtils, Forms, LR_Class;

type

  { TPropEditor }

  TPropEditor = class(TForm)
  public
    View: TfrView;

    function ShowEditor: TModalResult; virtual;
  end;

implementation

{ TPropEditor }

function TPropEditor.ShowEditor: TModalResult;
begin
  Result := ShowModal;
end;

end.