Ejemplo n.º 1
0
 public T ConvertValueTo <T>()
 {
     return(StoryVar.ConvertTo <T>(this.Value));
 }
Ejemplo n.º 2
0
 protected StoryText text(StoryVar text)
 {
     return(new StoryText(StoryVar.ConvertTo <string>(text.Value, strict: false)));
 }
Ejemplo n.º 3
0
 public StoryVar ConvertTo <T>()
 {
     return(new StoryVar(StoryVar.ConvertTo <T>(this.Value)));
 }
Ejemplo n.º 4
0
 protected HtmlTag htmlTag(StoryVar text)
 {
     return(new HtmlTag(StoryVar.ConvertTo <string>(text.Value, strict: false)));
 }