Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 337 Bytes

File metadata and controls

15 lines (11 loc) · 337 Bytes

Simple example 6

This example shows you how to implement a Popup Menu for a Control.

self._fullname.addPopupSubMenuOption('Path', 
	{
		'Delete':           self.__dummyEvent, 
		'Edit':             self.__dummyEvent,
		'Interpolate':      self.__dummyEvent
	})

Simple example 6