RemoveText
Introduction
Code Example
// Assuming text is a valid Text which has been added to the TextManager
TextManager.RemoveText(text);PositionedObjectList<Text> textList = new PositionedObjectList<Text>();
// populate textList by adding Text objects to it.
// This will remove all Text objects contained in textList and also
// clear textList if it is a two-way list.
TextManager.RemoveText(textList);Last updated
Was this helpful?