Kimono.KHTMLPart.SetCaretPosition C# (CSharp) Method

SetCaretPosition() public method

Sets the caret to the given position. If the given location is invalid, it will snap to the nearest valid location. Immediately afterwards a caretPositionChanged signal containing the effective position is emitted name="node" node to set to name="offset" zero-based offset within the node name="extendSelection" If true, a selection will be spanned from the last caret position to the given one. Otherwise, any existing selection will be deselected.
public SetCaretPosition ( DOM node, long offset, bool extendSelection ) : void
node DOM
offset long
extendSelection bool
return void
        public void SetCaretPosition(DOM.Node node, long offset, bool extendSelection)
        {
            interceptor.Invoke("setCaretPosition#$$", "setCaretPosition(DOM::Node, long, bool)", typeof(void), typeof(DOM.Node), node, typeof(long), offset, typeof(bool), extendSelection);
        }

Same methods

KHTMLPart::SetCaretPosition ( DOM node, long offset ) : void
KHTMLPart