Kimono.KHTMLPart.Selection C# (CSharp) Method

Selection() public method

Returns the selected part of the HTML by returning the starting and end position. If there is no selection, both nodes and offsets are equal. name="startNode" returns node selection starts in name="startOffset" returns offset within starting node name="endNode" returns node selection ends in name="endOffset" returns offset within end node.
public Selection ( DOM startNode, long startOffset, DOM endNode, long endOffset ) : void
startNode DOM
startOffset long
endNode DOM
endOffset long
return void
        public void Selection(DOM.Node startNode, long startOffset, DOM.Node endNode, long endOffset)
        {
            interceptor.Invoke("selection#$#$", "selection(DOM::Node&, long&, DOM::Node&, long&) const", typeof(void), typeof(DOM.Node), startNode, typeof(long), startOffset, typeof(DOM.Node), endNode, typeof(long), endOffset);
        }

Same methods

KHTMLPart::Selection ( ) : DOM.Range
KHTMLPart