Atspi.Registry.GetElement C# (CSharp) Method

GetElement() static private method

static private GetElement ( AccessiblePath ap, bool create ) : Accessible
ap AccessiblePath
create bool
return Accessible
        internal static Accessible GetElement(AccessiblePath ap, bool create)
        {
            Application application;
            application = Instance.GetApplication (ap.bus_name, create);
            if (application == null)
                return null;
            return application.GetElement (ap.path, create);
        }