@@ -86,6 +86,16 @@ TPyDelphiPresentedFrameScrollBox = class(TPyDelphiCustomPresentedFrameScrollBo
86
86
property DelphiObject: TPresentedFramedScrollBox read GetDelphiObject write SetDelphiObject;
87
87
end ;
88
88
89
+ TPyDelphiCustomPresentedFramedVertScrollBox = class (TPyDelphiCustomPresentedVertScrollBox)
90
+ private
91
+ function GetDelphiObject : TCustomPresentedFramedVertScrollBox;
92
+ procedure SetDelphiObject (const Value : TCustomPresentedFramedVertScrollBox);
93
+ public
94
+ class function DelphiObjectClass : TClass; override;
95
+ // Properties
96
+ property DelphiObject: TCustomPresentedFramedVertScrollBox read GetDelphiObject write SetDelphiObject;
97
+ end ;
98
+
89
99
implementation
90
100
91
101
uses
@@ -124,6 +134,7 @@ procedure TScrollBoxRegistration.RegisterWrappers(
124
134
APyDelphiWrapper.RegisterDelphiWrapper(TPyDelphiPresentedHorzScrollBox);
125
135
APyDelphiWrapper.RegisterDelphiWrapper(TPyDelphiCustomPresentedFrameScrollBox);
126
136
APyDelphiWrapper.RegisterDelphiWrapper(TPyDelphiPresentedFrameScrollBox);
137
+ APyDelphiWrapper.RegisterDelphiWrapper(TPyDelphiCustomPresentedFramedVertScrollBox);
127
138
end ;
128
139
129
140
{ TPyDelphiCustomPresentedScrollBox }
@@ -270,6 +281,24 @@ procedure TPyDelphiPresentedFrameScrollBox.SetDelphiObject(
270
281
inherited DelphiObject := Value ;
271
282
end ;
272
283
284
+ { TPyDelphiCustomPresentedFramedVertScrollBox }
285
+
286
+ class function TPyDelphiCustomPresentedFramedVertScrollBox.DelphiObjectClass : TClass;
287
+ begin
288
+ Result := TCustomPresentedFramedVertScrollBox;
289
+ end ;
290
+
291
+ function TPyDelphiCustomPresentedFramedVertScrollBox.GetDelphiObject : TCustomPresentedFramedVertScrollBox;
292
+ begin
293
+ Result := TCustomPresentedFramedVertScrollBox(inherited DelphiObject);
294
+ end ;
295
+
296
+ procedure TPyDelphiCustomPresentedFramedVertScrollBox.SetDelphiObject (
297
+ const Value : TCustomPresentedFramedVertScrollBox);
298
+ begin
299
+ inherited DelphiObject := Value ;
300
+ end ;
301
+
273
302
initialization
274
303
RegisteredUnits.Add(TScrollBoxRegistration.Create);
275
304
0 commit comments