STK ObjectsSend comments on this topic.
SetDisplayStatusType Method (IAgDisplayTm)
See Also
DisplayStatus
Windows





Windows & Linux

Description

Sets the display status type.

Syntax

[Visual Basic .NET]
Public Sub SetDisplayStatusType( _
    ByVal DisplayStatus As AgEDisplayTimesType _
)
[C#]
public void SetDisplayStatusType(
    AgEDisplayTimesType DisplayStatus
);
[Managed C++]
public: void SetDisplayStatusType(
    AgEDisplayTimesType DisplayStatus
);
[Unmanaged C++]
public: HRESULT SetDisplayStatusType(
    AgEDisplayTimesType DisplayStatus
);
[Java]
public void setDisplayStatusType(
    AgEDisplayTimesType DisplayStatus
);
[Python - STK API ]
def SetDisplayStatusType(self, DisplayStatus:"AgEDisplayTimesType") -> None:

Parameters

DisplayStatus

See Also

Example

Set STK Object Display to always on
[C#]
IAgDisplayTm display = stkObject as IAgDisplayTm;
display.SetDisplayStatusType(AgEDisplayTimesType.eAlwaysOn);
Set STK Object Display to always on
[Visual Basic .NET]
Dim display As IAgDisplayTm = TryCast(stkObject, IAgDisplayTm)
display.SetDisplayStatusType(AgEDisplayTimesType.eAlwaysOn)
© 2024 Analytical Graphics, Inc. All Rights Reserved.