internal WriteableNiconicoWebTextSegment(string text, string friendlyText, NiconicoWebTextSegmentType segmentType,NiconicoWebTextDecorateFlags flags, INiconicoWebTextSegment parent, NiconicoWebTextSegmentCollection segments)
 {
     this.Text = text;
     this.FriendlyText = friendlyText;
     this.SegmentType = segmentType;
     this.decorateFlag_ = flags;
     this.Parent = parent;
     this.Segments = segments;
 }
 public NiconicoWebText()
 {
     this.segments_ = new NiconicoWebTextSegmentCollection(this);
 }