Пример #1
0
 public InlineRunWithProperty(InlineProperty property, InlineRun run)
 {
     if (ReferenceEquals(run, null))
     {
         throw new ArgumentNullException("run");
     }
     Property = property;
     Run      = run;
 }
Пример #2
0
 public InlineRunWithProperty(string text)
 {
     Property = InlineProperty.None;
     Run      = new InlineText(text);
 }
Пример #3
0
 public InlineRunWithProperty(InlineRun run)
 {
     Property = InlineProperty.None;
     Run      = run;
 }