Description
2D graphics display options for the coverage grid.
Object Model
Public Properties
Example
Configure a coverage definition graphics
[C#] | Copy Code |
---|
IAgCvGfxAnimation cvAnimation = cvGraphics.Animation;
cvAnimation.IsSatisfactionVisible = true;
cvAnimation.Color = Color.Green;
IAgCvGfxProgress cvProgress = cvGraphics.Progress;
cvProgress.IsVisible = true;
cvProgress.Color = Color.Red;
IAgCvGfxStatic cvStatic = cvGraphics.Static;
cvStatic.Color = Color.Blue;
cvStatic.MarkerStyle = "Star";
|
|
Configure a coverage definition graphics
[Visual Basic .NET] | Copy Code |
---|
Dim cvAnimation As IAgCvGfxAnimation = cvGraphics.Animation cvAnimation.IsSatisfactionVisible = True cvAnimation.Color = Color.Green
Dim cvProgress As IAgCvGfxProgress = cvGraphics.Progress cvProgress.IsVisible = True cvProgress.Color = Color.Red
Dim cvStatic As IAgCvGfxStatic = cvGraphics.[Static] cvStatic.Color = Color.Blue cvStatic.MarkerStyle = "Star"
|
|