示例#1
0
文件: LineArea.cs 项目: nholik/Fo.Net
 public void changeHyphenation(HyphenationProps hyphProps)
 {
     this.hyphProps = hyphProps;
 }
示例#2
0
 public HyphenationProps GetHyphenationProps()
 {
     if (hyphProps == null)
     {
         this.hyphProps = new HyphenationProps();
         hyphProps.hyphenate = this.properties.GetProperty("hyphenate").GetEnum();
         hyphProps.hyphenationChar =
             this.properties.GetProperty("hyphenation-character").GetCharacter();
         hyphProps.hyphenationPushCharacterCount =
             this.properties.GetProperty("hyphenation-push-character-count").GetNumber().IntValue();
         hyphProps.hyphenationRemainCharacterCount =
             this.properties.GetProperty("hyphenation-remain-character-count").GetNumber().IntValue();
         hyphProps.language = this.properties.GetProperty("language").GetString();
         hyphProps.country = this.properties.GetProperty("country").GetString();
     }
     return hyphProps;
 }
示例#3
0
 public void changeHyphenation(HyphenationProps hyphProps)
 {
     this.hyphProps = hyphProps;
 }
示例#4
0
 public void setHyphenation(HyphenationProps hyphProps)
 {
     this.hyphProps = hyphProps;
 }
示例#5
0
 public void setHyphenation(HyphenationProps hyphProps)
 {
     this.hyphProps = hyphProps;
 }