This document is archived and information here might be outdated.  Recommended version.


IEditorZ.NotifyZFinalize Property (ArcObjects .NET 10.5 SDK)
ArcObjects Library Reference (Editor)  

IEditorZ.NotifyZFinalize Property

Callback used to notify if ZCapture mode fails.

[Visual Basic .NET]
Public Property NotifyZFinalize As INotifyZFinalize
[C#]
public INotifyZFinalize NotifyZFinalize {get; set;}

Product Availability

Available with ArcGIS Desktop.

Remarks

Callback mechanism used when Z capture fails; allows the registered client an opportunity to define Zs prior to editor applying default fallback behavior to ensure Z simplicity (ensures Zs are not defined as NaN and geometry is Z-aware). To receive notification when Z assignment fails, you will need to implement INotifyZFinalize on your class and assign a reference to this property. Only one class can modify or receive this notification; you should code defensively to ensure that another extension is not already plugged in. To unhook, set the NotifyZFinalize property to null.

See Also

IEditorZ Interface