Hi, I have a bookmark on my page that if the source does not exist, the selection needs to be backspaced (as in MS word). Can I do this in aspose.word?
This is the code that is used for the MSWord COM object for example:
if (bookmark.Name.Contains("AddressLine2") && (data == string.Empty))
{
bookmark.Range.Select();
bookmark.Range.Text = data;
wordApp.Selection.TypeBackspace();
}
else
{
bookmark.Range.Text = data;
}