FastReport_2022_VCL/LibD28x64/frxComboBoxRTTI.pas
2024-01-01 16:13:08 +01:00

78 lines
2.1 KiB
ObjectPascal

{******************************************}
{ }
{ FastReport VCL }
{ ComboBox RTTI }
{ }
{ Copyright (c) 1998-2022 }
{ by Fast Reports Inc. }
{ }
{******************************************}
unit frxComboBoxRTTI;
{$I frx.inc}
interface
implementation
uses
fs_iinterpreter, frxClassRTTI, frxListControl, frxComboBox, Classes, Types;
type
TFunctions = class(TfsRTTIModule)
private
function GetProp(Instance: TObject; ClassType: TClass; const PropName: String): Variant;
procedure SetProp(Instance: TObject; ClassType: TClass; const PropName: String; Value: Variant);
public
constructor Create(AScript: TfsScript); override;
end;
{ TFunctions }
constructor TFunctions.Create(AScript: TfsScript);
begin
inherited Create(AScript);
with AScript do
begin
AddClass(TfrxCustomListControlView, 'TfrxView');
with AddClass(TfrxComboBoxView, 'TfrxCustomListControlView') do
begin
AddProperty('ItemIndex', 'Integer', GetProp, SetProp);
AddProperty('Text', 'Integer', GetProp, SetProp);
end;
end;
end;
function TFunctions.GetProp(Instance: TObject; ClassType: TClass; const PropName: String): Variant;
begin
Result := 0;
if ClassType = TfrxComboBoxView then
if PropName = 'ITEMINDEX' then
Result := Integer(TfrxComboBoxView(Instance).ItemIndex)
else if PropName = 'TEXT' then
Result := WideString(TfrxComboBoxView(Instance).Text);
end;
procedure TFunctions.SetProp(Instance: TObject; ClassType: TClass; const PropName: String; Value: Variant);
begin
if ClassType = TfrxComboBoxView then
if PropName = 'ITEMINDEX' then
TfrxComboBoxView(Instance).ItemIndex := Value
else if PropName = 'TEXT' then
TfrxComboBoxView(Instance).Text := Value;
end;
initialization
fsRTTIModules.Add(TFunctions);
finalization
if fsRTTIModules <> nil then
fsRTTIModules.Remove(TFunctions);
end.