I want to show a tool tip from the MouseHover event that will display the entire text of an UltraTextEditor, but only when the control is in a data overflow state. How can you tell if the control's Text property contains more data than can be displayed in the field?
The associated UIElement has an IsDataFullyVisible property that you can check, such as:
EditorWithTextUIElement textUI = this.ultraTextEditor1.UIElement.GetDescendant(typeof(EditorWithTextUIElement)) as EditorWithTextUIElement;if (textUI != null){ bool isTextFullyVisible = textUI.IsDataFullyVisible;}
-Matt