Product Bundles
DevCraft
All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
Web
Mobile
Document Management
Desktop
Reporting
Testing & Mocking
CMS
UI/UX Tools
Debugging
Free Tools
Support and Learning
Productivity and Design Tools
You should use the PositionChanged event of the CaretPosition property of the RadDocument instance:
this
.radRichTextBox1.Document.CaretPosition.PositionChanged +=
new
System.EventHandler(CaretPosition_PositionChanged);
private
void
CaretPosition_PositionChanged(
object
sender, System.EventArgs e)
{
TableCellLayoutBox cellLayoutBox =
.radRichTextBox1.Document.CaretPosition.GetCurrentTableCellBox();
if
(cellLayoutBox !=
null
)
// TO DO
}
I hope this helps.