-
Notifications
You must be signed in to change notification settings - Fork 1
Subscript
jdubs edited this page Oct 21, 2016
·
1 revision
Applies subscript attribute to specified text.
SpecName (constant) The variable containing the text to format. Variable must be Formatted Text type.
Character (multiple) The character(s) to find and subscript.
ErrorMessage (multiple | optional) The error message to return when any error occurs.
Applicable for applying subscript attributes to specific subsets of text within variables. For example, you may specify "vs" as the subscript text in the Character parameter. If the user enters "Twins vs Royals" the method would apply the subscript attribute only to "vs" in the text.
public static void Subscript(string SpecName, object Character, object ErrorMessage)
{
Break();
try
{
Variable(SpecName).Value = Variable(SpecName).Value.Replace((string)Character, String.Format("<_char supersub='subscript'>{0}</_char>", (string)Character));
}
catch (Exception ex)
{
throw new Four51ActionsException(ex.Message, (string)ErrorMessage);
}
}