Exemplo n.º 1
0
 public void changeHyphenation(HyphenationProps hyphProps)
 {
     this.hyphProps = hyphProps;
 }
Exemplo n.º 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;
 }
Exemplo n.º 3
0
 public void changeHyphenation(HyphenationProps hyphProps)
 {
     this.hyphProps = hyphProps;
 }
Exemplo n.º 4
0
 public void setHyphenation(HyphenationProps hyphProps)
 {
     this.hyphProps = hyphProps;
 }
Exemplo n.º 5
0
 public void setHyphenation(HyphenationProps hyphProps)
 {
     this.hyphProps = hyphProps;
 }