Exemple #1
0
 public TextProps(FastTextBlock tb)
 {
     this.tb = tb;
 }
Exemple #2
0
 public void UpdateParent(FastTextBlock ftb)
 {
     text = ftb.Text;
     props = new TextProps(ftb);
 }
Exemple #3
0
 public ParaProps(FastTextBlock tb)
 {
     this.tb = tb;
     props = new TextProps(tb);
 }
 public void UpdateParent(FastTextBlock ftb)
 {
     parent = ftb;
 }
Exemple #5
0
 public ParaProps(FastTextBlock tb)
 {
     this.tb = tb;
     props   = new TextProps(tb);
 }
Exemple #6
0
 public void UpdateParent(FastTextBlock ftb)
 {
     text  = ftb.Text;
     props = new TextProps(ftb);
 }
Exemple #7
0
 public TextProps(FastTextBlock tb)
 {
     this.tb = tb;
 }