GetImportManager() public method

public GetImportManager ( ) : iTextSharp.text.rtf.parser.RtfImportMgr
return iTextSharp.text.rtf.parser.RtfImportMgr
 public override void SetParser(RtfParser parser)
 {
     this.rtfParser = parser;
     colorMap = new Hashtable();
     this.colorNr = 0;
     this.importHeader = parser.GetImportManager();
     this.SetToDefaults();
 }
 /**
 * Constructs a new RtfColorTableParser.
 *
 * @param importHeader The RtfImportHeader to add the color mappings to.
 */
 public RtfDestinationColorTable(RtfParser parser)
     : base(parser)
 {
     colorMap = new Hashtable();
     this.colorNr = 0;
     this.importHeader = parser.GetImportManager();
     this.SetToDefaults();
 }
 public RtfDestinationStylesheetTable(RtfParser parser, String type) : base(parser){
     this.importHeader = parser.GetImportManager();
     this.type = type;
 }
 public override void SetParser(RtfParser parser) {
     this.rtfParser = parser;
     this.importHeader = parser.GetImportManager();
 }
 public RtfDestinationListTable(RtfParser parser) : base(parser) {
     this.importHeader = parser.GetImportManager();
 }