CardMaker.Forms.CardMakerMDI.ExportImages C# (CSharp) Метод

ExportImages() приватный Метод

private ExportImages ( bool bExportAllLayouts ) : void
bExportAllLayouts bool
Результат void
        private void ExportImages(bool bExportAllLayouts)
        {
            ICardExporter zFileCardExporter = FileCardExporterFactory.BuildFileCardExporter(bExportAllLayouts);
            if (null == zFileCardExporter)
            {
                return;
            }

#if true
            var zWait = new WaitDialog(
                2,
                zFileCardExporter.ExportThread,
                "Export",
                new string[] { "Layout", "Card" },
                450);
            zWait.ShowDialog(this);
#else // non threaded
            zFileCardExporter.ExportThread();
#endif
        }