Skybound.Gecko.GeckoSelection.Collapse C# (CSharp) Méthode

Collapse() public méthode

Collapses the selection to a single point, at the specified offset in the given DOM node. When the selection is collapsed, and the content is focused and editable, the caret will blink there.
public Collapse ( GeckoNode parentNode, int offset ) : void
parentNode GeckoNode
offset int
Résultat void
        public void Collapse(GeckoNode parentNode, int offset)
        {
            Selection.Collapse((nsIDOMNode)parentNode.DomObject, offset);
        }