c# - how to get currently position of index in "Richtextbox" -


i want insert text current position of index in

richtextbox

as know should use

richtextbox.text = richtextbox.text.insert(int startindex, string value); 

what need

int startindex

what should write instead of access current position of index?


Comments

Popular posts from this blog

python - Operations inside variables -

Generic Map Parameter java -

arrays - What causes a java.lang.ArrayIndexOutOfBoundsException and how do I prevent it? -