Page 1821 Video Link, source in 26
Source242526272829metadata in 26
src/System Application/App/Video/src/Videolink.Page.al56 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.Media;
using System.Integration;
/// <summary>This page shows the video playing in Business Central.</summary>
page 1821 "Video Link"
{
Extensible = false;
Caption = 'Video link';
Editable = false;
PageType = Card;
ContextSensitiveHelpPage = 'across-videos';
InherentEntitlements = X;
InherentPermissions = X;
layout
{
area(Content)
{
group(Control5)
{
ShowCaption = false;
}
usercontrol(WebPageViewer; WebPageViewer)
{
ApplicationArea = All;
trigger ControlAddInReady(callbackUrl: Text)
begin
CurrPage.WebPageViewer.Navigate(URL);
end;
trigger Callback(data: Text)
begin
CurrPage.Close();
end;
}
}
}
var
URL: Text;
internal procedure SetURL(NavigateToURL: Text)
begin
URL := NavigateToURL;
end;
}