Exemple #1
0
        /**
         *
         */

        public CssAppliersImpl()
        {
            chunk              = new ChunkCssApplier(null);
            paragraph          = new ParagraphCssApplier(this);
            nonewlineparagraph = new NoNewLineParagraphCssApplier();
            htmlcell           = new HtmlCellCssApplier();
            list          = new ListStyleTypeCssApplier();
            lineseparator = new LineSeparatorCssApplier();
            image         = new ImageCssApplier();
            div           = new DivCssApplier();
        }
Exemple #2
0
        /**
         *
         */

        public CssAppliersImpl()
        {
            map = new Dictionary <Type, ICssApplier>();
            map[typeof(Chunk)]              = new ChunkCssApplier(null);
            map[typeof(Paragraph)]          = new ParagraphCssApplier(this);
            map[typeof(NoNewLineParagraph)] = new NoNewLineParagraphCssApplier();
            map[typeof(HtmlCell)]           = new HtmlCellCssApplier();
            map[typeof(List)]          = new ListStyleTypeCssApplier();
            map[typeof(LineSeparator)] = new LineSeparatorCssApplier();
            map[typeof(text.Image)]    = new ImageCssApplier();
            map[typeof(PdfDiv)]        = new DivCssApplier();
        }