自定義部件

unit Employee;

interface

uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, StdCtrls;

type
  TEmployee
= class (TComponent)
  private
    FName: string[
10 ];
    FAge: Integer;
    FSalary: Integer;
  protected
    {..................................}
  public
    constructor Create(Owner: TComponent); override;
    destructor Destroy; override;
    function GetName: string;
    function GetSalary: Integer;
    function GetAge: Integer;
    procedure SetName(sName: string);
    procedure SetAge(iAge: Integer);
    procedure SetSalary(iSalary: Integer);
  published
    property Name: string read GetName write SetName;
    property Age: Integer read GetAge write SetAge;
    property Salary: Integer read GetSalary write SetSalary;
  end;

  procedure register;

implementation

procedure register;
begin
  RegisterComponents(
' Samples ' ,[TEmployee]);
end;

{ TEmployee }

constructor TEmployee.Create(Owner: TComponent);
begin
  inherited Create(nil);
  Name :
=   '' ;
  FAge :
=  0;
  FSalary :
=  0;
end;

destructor TEmployee.Destroy;
begin

  inherited;
end;

function TEmployee.GetAge: Integer;
begin
  GetAge :
=  FAge;
end;

function TEmployee.GetName: string;
begin
  GetName :
=  FName;
end;

function TEmployee.GetSalary: Integer;
begin
  GetSalary :
=  FSalary;
end;

procedure TEmployee.SetAge(iAge: Integer);
begin
  FAge :
=  iAge;
end;

procedure TEmployee.SetName(sName: string);
begin
  FName :
=  sName;
end;

procedure TEmployee.SetSalary(iSalary: Integer);
begin
  FSalary :
=  iSalary;
end;

end.
 

 

Eplan是一款电气设计软件,它提供了自定义部件的功能。自定义部件可以让用户根据自己的需要创建、管理和使用各种电气元件。 在Eplan软件中,我们可以通过Eplan Data Portal来访问官方提供的部件。这个部件包含了各种常用的电气元件,如开关、插座、接线端子等。用户可以直接从部件中选择所需的元件,并将其拖放到电路图中使用。 除了官方提供的部件外,Eplan还支持用户自定义部件。用户可以根据自己的工作需求和习惯,创建自己的部件来存储和管理常用的元件。创建自定义部件的方法是在Eplan软件中选择“配置”-“部件管理”,然后点击“新建”按钮来创建一个新的部件,并在其中添加所需的元件。 在自定义部件中,用户可以按照自己的要求对元件进行分类和归档,以便更方便地查找和使用。用户还可以对元件的属性进行自定义,如名称、型号、制造商等,以满足自己的需求。 使用自定义部件的好处是可以提高设计效率和准确性。通过将常用的元件进行归档和分类,可以快速找到所需的元件,避免重复造轮子。而且,通过自定义元件的属性,可以准确地描述和标识元件的特性,避免使用错误的元件。 总而言之,Eplan提供了自定义部件的功能,用户可以根据自己的需要创建、管理和使用各种电气元件,从而提高设计效率和准确性。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值