コード例 #1
0
        //---------------------------------------------------------------------------

        /**
         * <summary>
         *      Find Pin from Tool
         * </summary>
         * <param name="FindMode"> Set Find Mode</param>
         * @author    정지완(JUNGJIWAN)
         * @date      2020/02/04 09:31
         */
        public bool FindFirst(EN_PIN_FIND_MODE FindMode, ref int C)
        {
            for (int i = 0; i < m_nMaxPin; i++)
            {
                if (FindPin((int)FindMode, i))
                {
                    C = i;
                    return(true);
                }
            }
            C = -1;
            return(false);
        }
コード例 #2
0
 //---------------------------------------------------------------------------
 public TOOL_PICK_INFO GetPickInfoStorage(EN_PIN_FIND_MODE FindMode, int type)
 {
     return(GetPickInfoStoragebyType((int)FindMode, type));
 }
コード例 #3
0
 //---------------------------------------------------------------------------
 public TOOL_PICK_INFO GetPickInfoStorage(int Where, EN_PIN_FIND_MODE FindMode)
 {
     return(GetPickInfoStorage(Where, (int)FindMode));
 }