示例#1
0
        public bool FindMark(int nID, HObject Image, HTuple Mold, ref double Row, ref double Col)
        {
            DispBase tempModuleBase = GetDispByIndexID(nID);

            if (tempModuleBase != null)
            {
                return(tempModuleBase.FindMark(Image, Mold, ref Row, ref Col));
            }
            else
            {
                return(false);
            }
        }
示例#2
0
        public bool SetMold(int nID, HObject ImageMold, ref HTuple MoldID)
        {
            DispBase tempModuleBase = GetDispByIndexID(nID);

            if (tempModuleBase != null)
            {
                return(tempModuleBase.SetMold(ImageMold, ref MoldID));
            }
            else
            {
                return(false);
            }
        }
示例#3
0
        public DispBase GetDispByIndexID(int nID)
        {
            DispBase temp = m_lisDevice [nID];

            return(temp);
        }