public KeyboardTextEditorEventHandler(TextElement textElement, TextEditingUtilities editingUtilities)
     : base(textElement, editingUtilities)
 {
 }
Ejemplo n.º 2
0
 public TextEditingManipulator(TextElement textElement)
 {
     m_TextElement    = textElement;
     editingUtilities = new TextEditingUtilities(textElement.m_SelectingManipulator.m_SelectingUtilities, textElement.uitkTextHandle.textHandle);
     InitTextEditorEventHandler();
 }
Ejemplo n.º 3
0
 public TouchScreenTextEditorEventHandler(TextElement textElement, TextEditingUtilities editingUtilities)
     : base(textElement, editingUtilities)
 {
 }
Ejemplo n.º 4
0
 protected TextEditorEventHandler(TextElement textElement, TextEditingUtilities editingUtilities)
 {
     this.textElement      = textElement;
     this.editingUtilities = editingUtilities;
 }