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-project / usr / share / lazarus / 2.0.10 / 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)
  protected
    FView: TfrView;
  public
    function ShowEditor(AView: TfrView): TModalResult; virtual;
    property View: TfrView read FView;
  end;

implementation

{ TPropEditor }

function TPropEditor.ShowEditor(AView: TfrView): TModalResult;
begin
  FView:=AView;
  Result := ShowModal;
end;

end.