AGI STK Objects 11 Send comments on this topic.
IAgCvGraphics Interface





Description

2D graphics display options for the coverage grid.

Object Model




Public Properties

Public Property Animation 2D animation graphics options.
Public Property IsObjectGraphicsVisible Specify whether graphics attributes of the coverage definition are visible.
Public Property Progress Access progress graphics options.
Public Property Static 2D static graphics options.

Example

Configure a coverage definition graphics
[C#] Copy Code
// 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] Copy Code
' 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"

© 2016 Analytical Graphics, Inc. All Rights Reserved.

STK Programming Interface 11.0.1