STK ObjectsSend comments on this topic.
IAgVeGfxLightingElement Interface

Description

Lighting condition properties.

Public Properties

Public Property ColorThe color of the line that will mark the region representing the selected lighting condition.
Public Property LineStyleThe type of line that will mark the region representing the selected lighting condition.
Public Property LineWidthThe width of the line that will mark the region representing the selected lighting condition.
Public Property MarkerStyleThe object marker while the vehicle is within a particular region representing the selected lighting condition.
Public Property VisibleOpt whether to display the orbit and/or ground track in the color assigned to the specified lighting condition.

Example

Configure sunlight lighting graphics
[C#]
IAgVeGfxLightingElement sunlight = lighting.Sunlight;

sunlight.Visible = true;
sunlight.Color = Color.Red;
sunlight.LineStyle = AgELineStyle.eDotted;
sunlight.LineWidth = AgELineWidth.e3;
sunlight.MarkerStyle = "Circle";
Configure sunlight lighting graphics
[Visual Basic .NET]
Dim sunlight As IAgVeGfxLightingElement = lighting.Sunlight

sunlight.Visible = True
sunlight.Color = Color.Red
sunlight.LineStyle = AgELineStyle.eDotted
sunlight.LineWidth = AgELineWidth.e3
sunlight.MarkerStyle = "Circle"
© 2024 Analytical Graphics, Inc. All Rights Reserved.