Exemplo n.º 1
0
 public TextProcessorPlugin(TextProcessorConfig config = null)
 {
     if (config == null)
     {
         _config = new TextProcessorConfig();
     }
     else
     {
         _config = config;
     }
 }
Exemplo n.º 2
0
 public TextProcessorPlugin(TextProcessorConfig config)
 {
     _config = config;
 }
Exemplo n.º 3
0
 public MarginApplier(TextProcessorConfig config, IEnumerable <IElementContext> elements)
 {
     _config   = config;
     _elements = elements.ToArray();
 }