STK ObjectsSend comments on this topic.
IAgVeGfxLightingElement Interface

Description

Lighting condition properties.

Public Properties

Public Property ColorGets or sets the color of the line that will mark the region representing the selected lighting condition.
Public Property LineStyleGets or sets the type of line that will mark the region representing the selected lighting condition.
Public Property LineWidthGets or sets the width of the line that will mark the region representing the selected lighting condition.
Public Property MarkerStyleGets or sets the 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.