Codeunit 9621 DesignerPageId
- App
- Base Application
- Namespace
- System.Tooling
- Versions
- 17-28
Versions171819202122232425262728
Source29
Source in 29
src/Layers/W1/BaseApp/Modules/System/PageDesigner/DesignerPageId.Codeunit.al26 lines, Copyright (c) Microsoft Corporation. MIT
namespace System.Tooling;
codeunit 9621 DesignerPageId
{
SingleInstance = true;
trigger OnRun()
begin
end;
var
DesignerPageId: Integer;
procedure GetPageId(): Integer
begin
exit(DesignerPageId);
end;
procedure SetPageId(PageId: Integer): Boolean
begin
DesignerPageId := PageId;
exit(true);
end;
}