File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -180,15 +180,15 @@ begin
180180end;
181181
182182(*
183- ## Make.CreateDynamicQuantityButtons
183+ ## Make.GetQuantityButtons()
184184```pascal
185- function TRSMake.CreateDynamicQuantityButtons (): array of TRSMakeQuantityButton;
185+ function TRSMake.GetQuantityButtons (): array of TRSMakeQuantityButton;
186186```
187187Returns the visible quantity buttons as a array of TRSMakeQuantityButton.
188188
189189Example:
190190```pascal
191- WriteLn Make.CreateDynamicQuantityButtons ();
191+ WriteLn Make.GetQuantityButtons ();
192192```
193193*)
194194function TRSMake.GetQuantityButtons(): array of TRSMakeQuantityButton;
235235begin
236236 buttons := Make.FindQuantityButtons();
237237 for i := 0 to High(buttons) do
238- WriteLn('Button ', i, ' bounds: ', buttons[i].Bounds);
238+ WriteLn('Button ', i, ' bounds: ', buttons[i].Button. Bounds);
239239end;
240240```
241241*)
You can’t perform that action at this time.
0 commit comments