示例#1
0
 public FlowContentItem(FlowContentNodeType nodeType, string text, int start, int end)
 {
     FlowContentNodeType = nodeType;
     Text  = text;
     Start = start;
     End   = end;
 }
示例#2
0
 public FlowContentNode(FlowContentNodeType flowContentNodeType, string text)
 {
     FlowContentNodeType = flowContentNodeType;
     Text = text;
 }