NewFeature

The NewFeature event notifies the client whenever a new feature is created.

EventNames:

  • NewFeature_Pre

  • NewFeature_Post

Examples:

NewFeature_Pre:

Register-InventorEvent -EventName NewFeature_Pre -Action 'PreNewFeature'

function PreNewFeature() {
	#Write event code here
}

NewFeature_Post:

Register-InventorEvent -EventName NewFeature_Post -Action 'PostNewFeature'

function PostNewFeature() {
	#Write event code here
}