Beispiel #1
0
        /// <summary>
        ///   <para>Vertical height of video.</para>
        /// </summary>
        /// <param name="widget">Widget to call method on.</param>
        /// <param name="height">Height of video.</param>
        /// <returns>Reference to provided <paramref name="widget"/>.</returns>
        /// <exception cref="ArgumentNullException">If <paramref name="widget"/> is a <c>null</c> reference.</exception>
        /// <seealso cref="IVideoJSPlayerWidget.Height(string)"/>
        public static IVideoJSPlayerWidget Height(this IVideoJSPlayerWidget widget, short height)
        {
            Assertion.NotNull(widget);

            return(widget.Height(height.ToString(CultureInfo.InvariantCulture)));
        }
Beispiel #2
0
        /// <summary>
        ///   <para>Collection of video sources to use.</para>
        /// </summary>
        /// <param name="widget">Widget to call method on.</param>
        /// <param name="videos">Collection of videos.</param>
        /// <returns>Reference to the current widget.</returns>
        /// <exception cref="ArgumentNullException">If <paramref name="widget"/> is a <c>null</c> reference.</exception>
        /// <seealso cref="IVideoJSPlayerWidget.Videos(IEnumerable{IMediaSource})"/>
        public static IVideoJSPlayerWidget Videos(this IVideoJSPlayerWidget widget, params IMediaSource[] videos)
        {
            Assertion.NotNull(widget);

            return(widget.Videos(videos));
        }
Beispiel #3
0
        /// <summary>
        ///   <para>Horizontal width of video.</para>
        /// </summary>
        /// <param name="widget">Widget to call method on.</param>
        /// <param name="width">Width of video.</param>
        /// <returns>Reference to provided <paramref name="widget"/>.</returns>
        /// <exception cref="ArgumentNullException">If <paramref name="widget"/> is a <c>null</c> reference.</exception>
        /// <seealso cref="IVideoJSPlayerWidget.Width(string)"/>
        public static IVideoJSPlayerWidget Width(this IVideoJSPlayerWidget widget, short width)
        {
            Assertion.NotNull(widget);

            return(widget.Width(width.ToString(CultureInfo.InvariantCulture)));
        }