Forum Discussion
tristaanogre
15 years agoEsteemed Contributor
Change your code to
If the IsOwnerDrawn property exists, it will return a true or false on it. If it doesn't exist, you might get an actual error as it will fail to find the property.
var object = Aliases.MyApplication.MyWindows ;
Log.Message(object.PopupMenu.IsOwnerDrawn);
If the IsOwnerDrawn property exists, it will return a true or false on it. If it doesn't exist, you might get an actual error as it will fail to find the property.