コード例 #1
0
ファイル: RunWord.cs プロジェクト: bentops/EPUBGenerator
 public RunWord(Word word) : base(word.OriginalText)
 {
     Word     = word;
     Word.Run = this;
 }
コード例 #2
0
ファイル: RunWord.cs プロジェクト: bentops/EPUBGenerator
 public RunWord(Word word, TextPointer pos) : base(word.OriginalText, pos)
 {
     Word     = word;
     Word.Run = this;
 }
コード例 #3
0
ファイル: RunWord.cs プロジェクト: bentops/EPUBGenerator
 public void SelectDictAt(int index)
 {
     Word.ChangeDictIndex(index);
 }