/* * 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); }
/* * 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; }