combineRightTextElement static method
Return a List of BrsTextElement with all BrsTextElement to the reight of startElement including startElement. Ex : List
Implementation
static List<TextElement> combineRightTextElement(
TextElement startElement, List<TextBlock> blocks) {
return _combineTextElement(startElement, blocks, HorizontalDirection.right);
}