Is it possible to access information about the text selection within an editable TreeNode
of a WinForms TreeView
?
I discovered methods such as BeginEdit()
and EndEdit(bool cancel)
, but I need finer granularity of control -- something like TextBoxBase.SelectionStart
and SelectionLength
properties, but on the node itself.
Is this possible in C#/.Net?