예제 #1
0
 public override void Reset()
 {
     localizedTextTable = null;
     if (field != null)
     {
         field.Value = string.Empty;
     }
     storeResult = null;
 }
예제 #2
0
 public void UseLocalizedText(LocalizedTextTable localizedText)
 {
     this.localizedText = localizedText;
     if (localizedText != null)
     {
         if (localizedText.ContainsField(originalTextValue))
         {
             text = localizedText[originalTextValue];
         }
     }
 }
예제 #3
0
 public void UseLocalizedText(LocalizedTextTable localizedText)
 {
     this.localizedText = localizedText;
     if (localizedText != null) {
         if (localizedText.ContainsField(originalTextValue)) {
             text = localizedText[originalTextValue];
         }
     }
 }