|
CogGraphicLabel MyLabel = new CogGraphicLabel();
Font MyFont = new Font(font, float.Parse(size));
MyLabel.GraphicDOFEnableBase = Cognex.VisionPro.CogGraphicDOFConstants.None;
MyLabel.SelectedSpaceName = strSelectedSpaceName;
MyLabel.Interactive = false;
MyLabel.Font = MyFont;
MyLabel.Color = color;
MyLabel.Alignment = alignment;
MyLabel.SetXYText(x, y, txt);
CogDisplay.InteractiveGraphics.Add(MyLabel, "", false); |
|