Video class

Build 1501 on 14/Nov/2017  This topic last edited on: 22/Mar/2016, at 16:38

Description

Renders a video DataContent attribute as a flash player control. The eventual video thumbnail and the video itself must be provided through the parameters ThumbnailId and VideoId. The flash player can be configured through the parameter Parameters.

See also http://tech.teradp.com/tech/html/gn4/docs/VSdoc/frlrfTeraDPGN4WebUIWinUIEmulationVideoClassTopic.html

Namespace

xmlns:l="http://www.teradp.com/schemas/GN4/1/Shell/Presentation"

Members

For the list of properties and methods, see:

http://tech.teradp.com/tech/html/gn4/docs/VSdoc/frlrfTeraDPGN4WebUIWinUIEmulationVideoClassTopic_members+.html

Example

<l:Video 

         Grid.Row="1"  

         HorizontalAlignment="Center" 

         MaxHeight="120" 

         MaxWidth="160" 

         Margin="5,5,5,5" 

         ThumbnailId="{Binding Path=[video.preview.id]}" 

         VideoId="{Binding Path=[video.videoPreview.id]}" 

         Parameters="autostart=false&amp;fullscreen=false"

>

More examples

<l:Video 

         MaxHeight="90" 

         MaxWidth="90" 

         VideoId="{Binding Path=[video.videoPreview.id]}" 

         ThumbnailId="{Binding Path=[video.thumbnail.id]}" 

         Parameters="autostart=false&amp;fullscreen=false&amp;skin=simple.swf" 

/>

 

<l:Video 

         Width="250" 

         Height="150" 

         ThumbnailId="{Binding Path=[video.thumbnail.id]}" 

         VideoId="{Binding Path=[video.videoPreview.id]}"/>

See also

<l:Audio

<l:Image