Atspi.Hyperlink.GetObject C# (CSharp) Method

GetObject() public method

public GetObject ( int index ) : Accessible
index int
return Accessible
        public Accessible GetObject(int index)
        {
            AccessiblePath path = proxy.GetObject (index);
            Accessible ret = Registry.GetElement (path, true);
            // hack -- we get an object which we may not have
            // received an event for.
            if (ret != null)
                ret.AddInterface ("org.a11y.atspi.Action");
            return ret;
        }