Description
Vehicle 2D Graphics display based on access intervals.
Public Properties
AccessObjects | Returns the collection of objects used for the access. |
DuringAccess | Returns the collection of gfx attributes used during the access. |
NoAccess | Returns the collection of gfx attributes used when there is no access. |
Interfaces
CoClasses that Implement IAgVeGfxAttributesAccess
Example
Set a vehicle's graphics to access intervals
[C#] |
---|
if (graphics.IsAttributesTypeSupported(AgEVeGfxAttributes.eAttributesAccess))
{
// Set graphics to access intervals
graphics.SetAttributesType(AgEVeGfxAttributes.eAttributesAccess);
// Get IAgVeGfxAttributesAccess interface
IAgVeGfxAttributesAccess accessAttributes = graphics.Attributes as IAgVeGfxAttributesAccess;
// adjust the access intervals graphics
}
|
|
Configure access intervals graphics
[C#] |
---|
accessAttributes.AccessObjects.Add("Satellite/sat1");
accessAttributes.DuringAccess.IsVisible = true;
accessAttributes.DuringAccess.Color = Color.Yellow;
accessAttributes.NoAccess.IsVisible = true;
accessAttributes.NoAccess.Color = Color.Red;
|
|
Set a vehicle's graphics to access intervals
[Visual Basic .NET] |
---|
If graphics.IsAttributesTypeSupported(AgEVeGfxAttributes.eAttributesAccess) Then
' Set graphics to access intervals
graphics.SetAttributesType(AgEVeGfxAttributes.eAttributesAccess)
' Get IAgVeGfxAttributesAccess interface
' adjust the access intervals graphics
Dim accessAttributes As IAgVeGfxAttributesAccess = TryCast(graphics.Attributes, IAgVeGfxAttributesAccess)
End If
|
|
Configure access intervals graphics
[Visual Basic .NET] |
---|
accessAttributes.AccessObjects.Add("Satellite/sat1")
accessAttributes.DuringAccess.IsVisible = True
accessAttributes.DuringAccess.Color = Color.Yellow
accessAttributes.NoAccess.IsVisible = True
accessAttributes.NoAccess.Color = Color.Red
|
|