OldAuthenticView.IsTextStateApplied (obsolete)
Superseded by AuthenticRange.IsTextStateApplied
// ----- javascript sample ----- // instead of: // Application.ActiveDocument.DocEditView.IsTextStateApplied ("bold"); // use now: if (Application.ActiveDocument.AuthenticView.Selection.IsTextStateApplied ("bold")) MsgBox ("bold on"); else MsgBox ("bold off"); |
Declaration: IsTextStateApplied (elementName as String) as Boolean
Description
Checks to see if the it the text state has already been applied. Common examples for the parameter elementName would be strong and italic.