Page 9456 Folder Name Input in 28

App
System Application
Namespace
System.ExternalFileStorage

Procedures, 1

Versions171819202122232425262728latest

Source26272829

Source in 28

src/System Application/App/External File Storage/src/Lookup/FolderNameInput.Page.al37 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.ExternalFileStorage;

page 9456 "Folder Name Input"
{
    ApplicationArea = All;
    Caption = 'Create Folder...';
    PageType = StandardDialog;
    Extensible = false;
    InherentPermissions = X;
    InherentEntitlements = X;

    layout
    {
        area(Content)
        {
            field(FolderNameField; FolderName)
            {
                Caption = 'Folder Name';
                ToolTip = 'Specifies the Name of the directory.';
            }
        }
    }

    var
        FolderName: Text;

    internal procedure GetFolderName(): Text
    begin
        exit(FolderName);
    end;
}

Procedures, 1

NameParametersReturnsAccessObsolete
GetFolderName()Textinternal-