public InlineRunWithProperty(InlineProperty property, InlineRun run) { if (ReferenceEquals(run, null)) { throw new ArgumentNullException("run"); } Property = property; Run = run; }
public InlineRunWithProperty(string text) { Property = InlineProperty.None; Run = new InlineText(text); }
public InlineRunWithProperty(InlineRun run) { Property = InlineProperty.None; Run = run; }