Python Reference Guide
 
Loading...
Searching...
No Matches
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
9from pyfbsdk import FBPlotPopup
10
11# Create the popup and set necessary initial values.
12lPp = FBPlotPopup()
13
14# Get the GUI to show.
15lRes = lPp.Popup("Options")
16
17options = lPp.GetPlotOptions()
18print(type(options))
19# Cleanup.
20del( lPp, lRes, FBPlotPopup)
Plot Popup (for setting options only).
Definition: pyfbsdk_generated.h:14143