Page 1821 Video Link in 25
- App
- System Application
- Namespace
- System.Media
Versions171819202122232425262728latest
Source in 25
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;
}
Procedures, 1
| Name | Parameters | Returns | Access | Obsolete |
|---|---|---|---|---|
| SetURL | (Text) | internal | - |