ArcObjects Library Reference (NetworkAnalystUI)  

INAWindow.UpdateContent Method

Refresh the window contents.

[Visual Basic .NET]
Public Sub UpdateContent ( _
    ByVal Category As INAWindowCategory _
)
[C#]
public void UpdateContent (
    INAWindowCategory Category
);

Product Availability

Available with ArcGIS Desktop. Requires Network Analyst Extension.

Remarks

The method UpdateContent refreshes the specified category or the entire NAWindow.

UpdateContent should be used if the underlying NAClasses were updated without events being fired.  For example, you should call UpdateContent after using an insert cursor to populate NALocationFeatures in the "Stops" NAClass.  Calling this method will ensure that the NAWindow reflects the current state of the NAClasses.

If you pass in a null pointer for the category, the entire NAWindow will be updated.

See Also

INAWindow Interface