window.Asc.plugin.executeMethod ("MoveCursorToContentControl", [args], callback)
Defines the method that allows moving a cursor to the specified content control.
This method should be used in the following way:
window.Asc.plugin.executeMethod ("MoveCursorToContentControl", [InternalId, isBegin]);
Parameter |
Description |
Type |
Example |
InternalId |
A unique internal identifier of the content control. |
string |
"2_839" |
isBegin |
Defines if the cursor position changes in the content control. By default, a cursor will be placed to the content control begin (false). |
boolean |
false |
The method returns the undefined value.
window.Asc.plugin.executeMethod ("MoveCursorToContentControl", ["2_839", false]);