指定したフィールドから PropertyGrid の TextBox を取得するにはどうすればよいですか? Pointer をテキストの末尾に設定するには、この TextBox が必要です。
var num = txtBox.GetCharIndexFromPosition(Cursor.Position);
txtBox.SelectionStart = num + 1;
txtBox.SelectionLength = 0;
では、この TextBox を PropertyGrid から取得するにはどうすればよいでしょうか? また、PropertyGrid のプロパティは読み取り専用です。