Example #1
0
        /*
         * Create the preview
         */

        public CharPreview CreatePreview(char c)
        {
            CharPreview cp;

            cp      = new CharPreview();
            cp.Font = this.GdiFont;
            cp.Create(c, this.XOffset, this.YOffset, this.ExtraLines);
            cp.Tag = c;

            return(cp);
        }
Example #2
0
        /*
         * Create the preview
         */
        public CharPreview CreatePreview(char c)
        {
            CharPreview cp;

              cp=new CharPreview();
              cp.Font=this.GdiFont;
              cp.Create(c,this.XOffset,this.YOffset,this.ExtraLines);
              cp.Tag=c;

              return cp;
        }