CPython stub backend for pyrevit.forms.
This module provides stub-only symbols. All stubs raise
PyRevitCPythonNotSupported with a stable feature name string and do not
load WPF/clr assemblies at import time.
Stubbed symbols:
WPFWindow, TemplateUserInputWindow, SelectFromList, CommandSwitchWindow,
ProgressBar, ask_for_string, ask_for_unique_string, ask_for_one_item,
ask_for_date, ask_for_number_slider, pick_file, pick_folder, show_balloon.
Bases: _NotSupportedBase
Source code in pyrevitlib/pyrevit/forms/_cpy.py
| def __init__(self, *args, **kwargs):
_raise_not_supported(self._feature_name)
|
Bases: WPFWindow
Source code in pyrevitlib/pyrevit/forms/_cpy.py
| def __init__(self, *args, **kwargs):
_raise_not_supported(self._feature_name)
|
Source code in pyrevitlib/pyrevit/forms/_cpy.py
| @classmethod
def show(cls, *args, **kwargs):
cls._raise("show")
|
Bases: TemplateUserInputWindow
Source code in pyrevitlib/pyrevit/forms/_cpy.py
| def __init__(self, *args, **kwargs):
_raise_not_supported(self._feature_name)
|
Source code in pyrevitlib/pyrevit/forms/_cpy.py
| @classmethod
def show(cls, *args, **kwargs):
cls._raise("show")
|
Bases: TemplateUserInputWindow
Source code in pyrevitlib/pyrevit/forms/_cpy.py
| def __init__(self, *args, **kwargs):
_raise_not_supported(self._feature_name)
|
Source code in pyrevitlib/pyrevit/forms/_cpy.py
| @classmethod
def show(cls, *args, **kwargs):
cls._raise("show")
|
Bases: _NotSupportedBase
Source code in pyrevitlib/pyrevit/forms/_cpy.py
| def __init__(self, *args, **kwargs):
_raise_not_supported(self._feature_name)
|
Source code in pyrevitlib/pyrevit/forms/_cpy.py
| def ask_for_string(*args, **kwargs):
_raise_not_supported("pyrevit.forms.ask_for_string")
|
Source code in pyrevitlib/pyrevit/forms/_cpy.py
| def ask_for_unique_string(*args, **kwargs):
_raise_not_supported("pyrevit.forms.ask_for_unique_string")
|
Source code in pyrevitlib/pyrevit/forms/_cpy.py
| def ask_for_one_item(*args, **kwargs):
_raise_not_supported("pyrevit.forms.ask_for_one_item")
|
Source code in pyrevitlib/pyrevit/forms/_cpy.py
| def ask_for_date(*args, **kwargs):
_raise_not_supported("pyrevit.forms.ask_for_date")
|
Source code in pyrevitlib/pyrevit/forms/_cpy.py
| def ask_for_number_slider(*args, **kwargs):
_raise_not_supported("pyrevit.forms.ask_for_number_slider")
|
Source code in pyrevitlib/pyrevit/forms/_cpy.py
| def pick_file(*args, **kwargs):
_raise_not_supported("pyrevit.forms.pick_file")
|
Source code in pyrevitlib/pyrevit/forms/_cpy.py
| def pick_folder(*args, **kwargs):
_raise_not_supported("pyrevit.forms.pick_folder")
|
Source code in pyrevitlib/pyrevit/forms/_cpy.py
| def show_balloon(*args, **kwargs):
_raise_not_supported("pyrevit.forms.show_balloon")
|