Page 9456 Folder Name Input in 27
- App
- System Application
- Namespace
- System.ExternalFileStorage
Versions171819202122232425262728latest
Source in 27
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
| Name | Parameters | Returns | Access | Obsolete |
|---|---|---|---|---|
| GetFolderName | () | Text | internal | - |