AGI STK X 11Send comments on this topic.
OnObjectEditingApply Event (AgUiAxVOCntrl)
See Also
Path
Path to the object being edited.
Windows






Windows & Linux

Description

Triggered when a 3D object editing changes are applied.

Syntax

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

Parameters

Path
Path to the object being edited.

See Also

Example

[Visual Basic .NET]
Private Sub AxAgUiAxVOCntrl1_OnObjectEditingApply( _
ByVal sender As Object, _
ByVal e As AxAGI.STKX.IAgUiAxVOCntrlEvents_OnObjectEditingApplyEvent) _
Handles AxAgUiAxVOCntrl1.OnObjectEditingApply

MessageBox.Show ("The changes are being applied to : " & e.path)

End Sub
© 2019 Analytical Graphics, Inc. All Rights Reserved.