Whether component is visible.
Read-write property
| [Visual Basic .NET] |
|---|
Public Property Visible() As Boolean |
| [C#] |
|---|
|
| [Managed C++] |
|---|
public: __property bool get_Visible(); |
| [Unmanaged C++] |
|---|
|
| [Java] |
|---|
|
The display status of vectors and other RefCrdn components can be returned via code such as the following example:
IAgSatellite sat= (IAgSatellite)AGI_APP.CurrentScenario.Children["Satellite1"];
for (int i = 0; i < sat.VO.Vector.RefCrdns.Count; i++)
{
if(sat.VO.Vector.RefCrdns[i].Visible)
{
//...
}
}






