RichTextBox Question
-
How would I go about changing the number of spaces a tab uses when the user presses Tab on his/her keyboard? :confused: Thanks in advance. Happy Programming and may God Bless! "Your coding practices might be buggy, but your code is always right." Internet::WWW::CodeProject::bneacetp
-
How would I go about changing the number of spaces a tab uses when the user presses Tab on his/her keyboard? :confused: Thanks in advance. Happy Programming and may God Bless! "Your coding practices might be buggy, but your code is always right." Internet::WWW::CodeProject::bneacetp
From my experience, I dont think u can, I digged alot thru the Win API but couldnt find anything... top secret xacc-ide 0.0.1
-
How would I go about changing the number of spaces a tab uses when the user presses Tab on his/her keyboard? :confused: Thanks in advance. Happy Programming and may God Bless! "Your coding practices might be buggy, but your code is always right." Internet::WWW::CodeProject::bneacetp
See the documentation[^] for the
RichTextBox.SelectionTabs
property. This is the same as sending theEM_SETPARAFORMAT
with aPARAFORMAT2
structure in native code with thecTabCount
andrgzTabs
fields assigned.Microsoft MVP, Visual C# My Articles
-
See the documentation[^] for the
RichTextBox.SelectionTabs
property. This is the same as sending theEM_SETPARAFORMAT
with aPARAFORMAT2
structure in native code with thecTabCount
andrgzTabs
fields assigned.Microsoft MVP, Visual C# My Articles