Beispiel #1
0
 /// <summary>
 ///     Media temporary file permission
 /// </summary>
 /// <param name="Permission">Permissions flags</param>
 /// <remarks>
 ///     <para>
 ///         The PDF reader must save the media file to a temporary file
 ///         in order for the player to play it.
 ///     </para>
 /// </remarks>
 public void MediaTempFilePermission
 (
     TempFilePermission Permission
 )
 {
     // allow reader to always create temporary file (other options do not work)
     // Media clip dictionary T 9.10 page 766
     TempFilePermissions.AddPdfString("/TF", Permission.ToString());
 }
        /// <summary>
        /// Media temporary file permission
        /// </summary>
        /// <param name="Permission">Permissions flags</param>
        /// <remarks><para>
        /// The PDF reader must save the media file to a temporary file
        /// in order for the player to play it.
        /// </para></remarks>
        public void MediaTempFilePermission(
			TempFilePermission	Permission
			)
        {
            // allow reader to always create temporary file (other options do not work)
            // Media clip dictionary T 9.10 page 766
            TempFilePermissions.AddPdfString("/TF", Permission.ToString());
            return;
        }