Ejemplo n.º 1
0
        public IEnumerable <string> RequestSelectionOfType(string selectionMessage, SelectionType selectionType, SelectionObjectType objectType)
        {
            IAppInteraction appInteraction = AppResolver.Resolve <IAppInteraction>();
            var             descs          = appInteraction.PickElements();

            return(descs);
        }
Ejemplo n.º 2
0
        public IEnumerable <string> RequestSelectionOfType(string selectionMessage, SelectionType selectionType, SelectionObjectType objectType)
        {
            IAppInteraction appInteraction = AppResolver.Resolve <IAppInteraction>();
            Point3d         pt             = appInteraction.PickPoint();

            return(new string[] { string.Format("{0};{1};{2}", pt.x, pt.y, pt.z) });
        }