UI/FBPlotPopup.py

UI/FBPlotPopup.py
1 # Copyright 2009 Autodesk, Inc. All rights reserved.
2 # Use of this software is subject to the terms of the Autodesk license agreement
3 # provided at the time of installation or download, or which otherwise accompanies
4 # this software in either electronic or hard copy form.
5 #
6 # Topic: FBPlotPopup
7 #
8 
9 from pyfbsdk import FBPlotPopup
10 
11 # Create the popup and set necessary initial values.
12 lPp = FBPlotPopup()
13 
14 # Get the GUI to show.
15 lRes = lPp.Popup("Options")
16 
17 options = lPp.GetPlotOptions()
18 print type(options)
19 # Cleanup.
20 del( lPp, lRes, FBPlotPopup)