Beispiel #1
0
        /// <summary>
        /// Print this playlist.
        /// </summary>
        /// <param name="showPrintDialog">If true, display the print dialog.</param>
        /// <param name="printKind">The printout kind.</param>
        /// <param name="theme">
        /// The name of the theme to use. This corresponds to the name of a Theme combo box item
        /// in the print dialog for the specified printKind (e.g. "Track length").  This string
        /// cannot be longer than 255 characters, but it may be NULL or empty.
        /// </param>

        public void Print(bool showPrintDialog, ITPlaylistPrintKind printKind, string theme)
        {
            Invoke((Action) delegate
            {
                playlist.Print(showPrintDialog, printKind, theme);
            });
        }