Пример #1
0
 public CapturePoint(int wellNumber, int dropNumber, ICaptureProfile[] captureProfiles, ImageRect location, ICapturePoint parent, string regionID, RegionType regionType)
 {
     SetWellNumber(wellNumber);
     SetDropNumber(dropNumber);
     SetCaptureProfiles(captureProfiles);
     SetLocation(location);
     SetParent(parent);
     SetRegionID(regionID);
     SetRegionType(regionType);
 }
Пример #2
0
 public void SetParent(ICapturePoint parent)
 {
     _parent = parent;
 }