STK XSend comments on this topic.
OnObjectEditingApply Event (AgUiAxVOCntrl)
See Also  Example
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  onObjectEditingApply(
   String Path
);
[Unmanaged C++]
public: HRESULT OnObjectEditingApply(
   BSTR Path
);

Parameters

Path
Path to the object being edited.

Example

[Visual Basic .NET]Copy Code
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

See Also

© 2018 Analytical Graphics, Inc. All Rights Reserved.