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