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

ContainsNode() public méthode

Returns whether the specified node is part of the selection.
public ContainsNode ( GeckoNode node, bool partlyContained ) : bool
node GeckoNode
partlyContained bool True if the function should return true when some part of the node is contained with the selection; when false, the function only returns true when the entire node is contained within the selection.
Résultat bool
        public bool ContainsNode(GeckoNode node, bool partlyContained)
        {
            return Selection.ContainsNode((nsIDOMNode)node.DomObject, partlyContained);
        }