AGI STK X 11Send comments on this topic.
OnScenarioSave Event (AgSTKXApplication)
See Also
Path
Full path to the scenario file (.sc).
Windows






Windows & Linux

Description

Triggered when the current scenario is saved.

Syntax

[Visual Basic .NET]
Public Event OnScenarioSave( _
    ByVal Path As String _
) 
[C#]
public void OnScenarioSave(
    string Path
);
[Managed C++]
public: void OnScenarioSave(
    String __gc ^ Path
);
[Java]
public void onScenarioSave(
    String Path
);
[Unmanaged C++]
public: void OnScenarioSave(
    BSTR  Path
);

Parameters

Path
Full path to the scenario file (.sc).

See Also

Example

[Visual Basic .NET]
Private Sub stkxApp_OnScenarioSave(ByVal Path As String) _
Handles stkxApp.OnScenarioSave
MessageBox.Show("STK X - Scenario saved: " & Path)
End Sub
© 2019 Analytical Graphics, Inc. All Rights Reserved.