예제 #1
0
 public JapaneseLetterFragment(
     GlueProperty beforeGlue,
     float contentLength,
     UChar content,
     TextEmphasysDot textEmphasysDot)
     : base(beforeGlue, contentLength, textEmphasysDot)
 {
     _content = content;
 }
예제 #2
0
 public LatinWordPartFragment(
     GlueProperty beforeGlue,
     float contentLength,
     UString content,
     TextEmphasysDot textEmphasysDot)
     : base(beforeGlue, contentLength, textEmphasysDot)
 {
     _content = content;
 }
예제 #3
0
 public AtomicFragment(
     GlueProperty beforeGlue,
     float contentLength,
     TextEmphasysDot textEmphasysDot)
 {
     BeforeGlue       = beforeGlue;
     ContentLength    = contentLength;
     _textEmphasysDot = textEmphasysDot;
 }
 public JapaneseLetterFragment(
     GlueProperty beforeGlue,
     float contentLength,
     string content,
     TextEmphasysDot textEmphasysDot)
 {
     BeforeGlue       = beforeGlue;
     ContentLength    = contentLength;
     Content          = content;
     _textEmphasysDot = textEmphasysDot;
 }
예제 #5
0
 public TextEmphasysDotChange(TextEmphasysDot value)
 {
     Value = value;
 }
예제 #6
0
 public TextEmphasysDotChange(TextEmphasysDot value)
 {
     Value = value;
 }
예제 #7
0
 public InlineStyle()
 {
     _textEmphasysDot = TextEmphasysDot.None;
 }
예제 #8
0
 public InlineStyle()
 {
     _textEmphasysDot = TextEmphasysDot.None;
 }