STK ObjectsSend comments on this topic.
IAgCvGraphics Interface

Description

2D graphics display options for the coverage grid.

Public Properties

Public Property Animation2D animation graphics options.
Public Property IsObjectGraphicsVisibleSpecify whether graphics attributes of the coverage definition are visible.
Public Property ProgressAccess progress graphics options.
Public Property Static2D static graphics options.

Example

Configure a coverage definition graphics
[C#]
// Configure animation
IAgCvGfxAnimation cvAnimation = cvGraphics.Animation;
cvAnimation.IsSatisfactionVisible = true;
cvAnimation.Color = Color.Green;

// Configure progress
IAgCvGfxProgress cvProgress = cvGraphics.Progress;
cvProgress.IsVisible = true;
cvProgress.Color = Color.Red;

// Configure static
IAgCvGfxStatic cvStatic = cvGraphics.Static;
cvStatic.Color = Color.Blue;
cvStatic.MarkerStyle = "Star";
Configure a coverage definition graphics
[Visual Basic .NET]
' Configure animation
Dim cvAnimation As IAgCvGfxAnimation = cvGraphics.Animation
cvAnimation.IsSatisfactionVisible = True
cvAnimation.Color = Color.Green

' Configure progress
Dim cvProgress As IAgCvGfxProgress = cvGraphics.Progress
cvProgress.IsVisible = True
cvProgress.Color = Color.Red

' Configure static
Dim cvStatic As IAgCvGfxStatic = cvGraphics.[Static]
cvStatic.Color = Color.Blue
cvStatic.MarkerStyle = "Star"
© 2024 Analytical Graphics, Inc. All Rights Reserved.