GetElementById() public method

public GetElementById ( string id ) : ElementWrapper
id string
return ElementWrapper
Exemplo n.º 1
0
        public override bool MoveToId(string id)
        {
            _Gumbo.MarshalAll();

            var element = _Gumbo.GetElementById(id);

            if (element == null)
            {
                return(false);
            }

            _State.SetCurrent(element);
            return(true);
        }