Control add-in RoleCenterSelector in 28

App
System Application
Namespace
System.Environment

Procedures, 3

Versions171819202122232425262728latest

Source242526272829

Source in 28

src/System Application/App/ControlAddIns/src/RoleCenterSelector.ControlAddin.al36 lines, Copyright (c) Microsoft Corporation. MIT

// ------------------------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
// ------------------------------------------------------------------------------------------------

namespace System.Environment;

controladdin RoleCenterSelector
{
    RequestedHeight = 750;
    RequestedWidth = 560;
    VerticalStretch = true;
    HorizontalStretch = true;

    Scripts = 'https://static2.sharepointonline.com/files/fabric/office-ui-fabric-js/1.4.0/js/fabric.min.js',
              'Resources\RoleCenterSelector\js\RoleCenterSelector.js';
    StartupScript = 'Resources\RoleCenterSelector\js\Startup.js';
    RefreshScript = 'Resources\RoleCenterSelector\js\Refresh.js';
    RecreateScript = 'Resources\RoleCenterSelector\js\Recreate.js';
    StyleSheets = 'https://static2.sharepointonline.com/files/fabric/office-ui-fabric-js/1.4.0/css/fabric.min.css',
                  'https://static2.sharepointonline.com/files/fabric/office-ui-fabric-js/1.4.0/css/fabric.components.min.css',
                  'Resources\RoleCenterSelector\stylesheets\RoleCenterSelector.css';


    event ControlAddInReady();

    event OnAcceptAction();

    event OnProfileSelected(ProfileId: Text);

    procedure LoadRoleCenterFromJson(Json: Text);

    procedure LoadPageDataFromJson(Json: Text);

    procedure SetCurrentProfileId(ProfileId: Text);
}

Procedures, 3

NameParametersReturnsAccessObsolete
LoadRoleCenterFromJson(Text)public-
LoadPageDataFromJson(Text)public-
SetCurrentProfileId(Text)public-