_ipy
Reusable WPF forms for pyRevit.
Examples:
Attributes
mlogger = get_logger(__name__)
module-attribute
DEFAULT_CMDSWITCHWND_WIDTH = 600
module-attribute
DEFAULT_SEARCHWND_WIDTH = 600
module-attribute
DEFAULT_SEARCHWND_HEIGHT = 100
module-attribute
DEFAULT_INPUTWINDOW_WIDTH = 500
module-attribute
DEFAULT_INPUTWINDOW_HEIGHT = 600
module-attribute
DEFAULT_RECOGNIZE_ACCESS_KEY = False
module-attribute
WPF_HIDDEN = framework.Windows.Visibility.Hidden
module-attribute
WPF_COLLAPSED = framework.Windows.Visibility.Collapsed
module-attribute
WPF_VISIBLE = framework.Windows.Visibility.Visible
module-attribute
XAML_FILES_DIR = op.dirname(__file__)
module-attribute
Classes
reactive(getter)
Bases: property
Decorator for WPF bound properties.
Source code in pyrevitlib/pyrevit/forms/_ipy.py
Functions
setter(setter)
Property setter.
Source code in pyrevitlib/pyrevit/forms/_ipy.py
Reactive
Bases: INotifyPropertyChanged
WPF property updator base mixin.
Functions
add_PropertyChanged(value)
remove_PropertyChanged(value)
OnPropertyChanged(prop_name)
Called when a property is changed.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
prop_name
|
str
|
property name |
required |
Source code in pyrevitlib/pyrevit/forms/_ipy.py
WindowToggler(window)
WPFWindow(xaml_source, literal_string=False, handle_esc=True, set_owner=True)
Bases: _WPFMixin, Window
WPF Window base class for all pyRevit forms.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
xaml_source
|
str
|
xaml source filepath or xaml content |
required |
literal_string
|
bool
|
xaml_source contains xaml content, not filepath |
False
|
handle_esc
|
bool
|
handle Escape button and close the window |
True
|
set_owner
|
bool
|
set the owner of window to host app window |
True
|
Examples:
from pyrevit import forms
layout = '<Window ' \
'xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" ' \
'xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" ' \
'ShowInTaskbar="False" ResizeMode="NoResize" ' \
'WindowStartupLocation="CenterScreen" ' \
'HorizontalContentAlignment="Center">' \
'</Window>'
w = forms.WPFWindow(layout, literal_string=True)
w.show()
Initialize WPF window and resources.
Source code in pyrevitlib/pyrevit/forms/_ipy.py
Attributes
pyrevit_version
property
Active pyRevit formatted version string, e.g. '4.9-beta'.
Functions
load_xaml(xaml_source, literal_string=False, handle_esc=True, set_owner=True)
Load the window XAML file.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
xaml_source
|
str
|
The XAML content or file path to load. |
required |
literal_string
|
bool
|
True if |
False
|
handle_esc
|
bool
|
Whether the ESC key should be handled. Defaults to True. |
True
|
set_owner
|
bool
|
Whether to set the window owner. Defaults to True. |
True
|
Source code in pyrevitlib/pyrevit/forms/_ipy.py
setup_owner()
setup_default_handlers()
handle_input_key(sender, args)
set_icon(icon_path)
setup_icon()
hide()
show(modal=False)
show_dialog()
conceal()
setup_resources(wpf_ctrl)
staticmethod
Set pyRevit colour resources on any WPF control.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
wpf_ctrl
|
any WPF FrameworkElement with a Resources dict. |
required |
Source code in pyrevitlib/pyrevit/forms/_ipy.py
merge_resource_dict(xaml_source)
Merge a ResourceDictionary xaml file into this control's resources.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
xaml_source
|
str
|
absolute path to a ResourceDictionary xaml file. |
required |
Source code in pyrevitlib/pyrevit/forms/_ipy.py
get_locale_string(string_name)
Return a localised string from the merged ResourceDictionary.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
string_name
|
str
|
resource key. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
str |
localised string value. |
Source code in pyrevitlib/pyrevit/forms/_ipy.py
set_image_source_file(wpf_element, image_file)
staticmethod
Set the source of a WPF Image element from a file path.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
wpf_element
|
Image
|
target image element. |
required |
image_file
|
str
|
absolute or command-relative image path. |
required |
Source code in pyrevitlib/pyrevit/forms/_ipy.py
set_image_source(wpf_element, image_file)
Set the source of a WPF Image element from a file path.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
wpf_element
|
Image
|
target image element. |
required |
image_file
|
str
|
absolute or command-relative image path. |
required |
Source code in pyrevitlib/pyrevit/forms/_ipy.py
hide_element(*wpf_elements)
staticmethod
Collapse one or more WPF elements (removes from layout).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
*wpf_elements
|
list[UIElement]
|
elements to collapse. |
()
|
Source code in pyrevitlib/pyrevit/forms/_ipy.py
show_element(*wpf_elements)
staticmethod
Make one or more collapsed WPF elements visible.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
*wpf_elements
|
list[UIElement]
|
elements to show. |
()
|
Source code in pyrevitlib/pyrevit/forms/_ipy.py
toggle_element(*wpf_elements)
staticmethod
Toggle visibility of one or more WPF elements.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
*wpf_elements
|
list[UIElement]
|
elements to toggle. |
()
|
Source code in pyrevitlib/pyrevit/forms/_ipy.py
disable_element(*wpf_elements)
staticmethod
Disable one or more WPF elements.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
*wpf_elements
|
list[UIElement]
|
elements to disable. |
()
|
enable_element(*wpf_elements)
staticmethod
Enable one or more WPF elements.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
*wpf_elements
|
list[UIElement]
|
elements to enable. |
()
|
dispatch(func, *args, **kwargs)
Run a function on the opposite thread.
When called from the UI thread, spawns a background thread. When called from a background thread, marshals execution back onto the UI thread via the Dispatcher. This makes the pattern for background work + UI updates symmetrical:
# on UI thread — starts background work
self.dispatch(self._do_work)
def _do_work(self):
...heavy work...
# on background thread — posts UI update
self.dispatch(self._update_label, "done")
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
func
|
Callable
|
function to run. |
required |
*args
|
positional arguments forwarded to func. |
()
|
|
**kwargs
|
keyword arguments forwarded to func. |
{}
|
Source code in pyrevitlib/pyrevit/forms/_ipy.py
handle_url_click(sender, args)
XAML event handler: open a Hyperlink URL in the default browser.
Wire up in XAML with: RequestNavigate="handle_url_click"
Source code in pyrevitlib/pyrevit/forms/_ipy.py
WPFPanel()
Bases: _WPFMixin, Page
WPF panel base class for all pyRevit dockable panels.
Subclass this, set the three required class attributes, then register
and open the panel through the module-level helpers.
Use self.logger and self.output instead of using script.get_logger() and script.get_output()
to ensure correct titles in the output window.
Required class attributes:
panel_id (str): stable UUID string identifying the panel in Revit.
panel_source (str): XAML filename (resolved relative to the command).
panel_title (str): title displayed in the panel chrome.
Optional class attributes:
initial_state (UI.DockablePaneState):
initial docking position; Revit picks a default when None.
editor_interaction (UI.EditorInteractionType):
how the panel behaves while an editor is active.
contextual_help (UI.ContextualHelp):
F1 help associated with the pane.
Examples:
python
from pyrevit import forms
import Autodesk.Revit.UI as UI
state = UI.DockablePaneState()
state.DockPosition = UI.DockPosition.Right
class MyPanel(forms.WPFPanel):
panel_id = "181e05a4-28f6-4311-8a9f-d2aa528c8755"
panel_source = "MyPanel.xaml"
panel_title = "My Panel"
initial_state = state
forms.register_dockable_panel(MyPanel)
# open from any command button
forms.open_dockable_panel(MyPanel)
# retrieve the live instance from anywhere
dockable_pane = forms.get_dockable_panel(MyPanel)
Initialize WPF panel and resources.
Source code in pyrevitlib/pyrevit/forms/_ipy.py
Attributes
panel_id = None
class-attribute
instance-attribute
panel_source = None
class-attribute
instance-attribute
panel_title = None
class-attribute
instance-attribute
initial_state = None
class-attribute
instance-attribute
editor_interaction = None
class-attribute
instance-attribute
contextual_help = None
class-attribute
instance-attribute
logger
property
Logger named after the panel, created on first access.
output
property
Output window with title corrected to panel_title whenever accessed.
pyrevit_version
property
Active pyRevit formatted version string, e.g. '4.9-beta'.
Functions
load_xaml(xaml_source, literal_string=False)
Load the panel XAML file.
Supports the full locale-fallback chain (see _resolve_xaml_source) and can accept raw XAML content via literal_string, matching WPFWindow.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
xaml_source
|
str
|
XAML content string or file path. |
required |
literal_string
|
bool
|
True when xaml_source is raw content. |
False
|
Source code in pyrevitlib/pyrevit/forms/_ipy.py
setup_resources(wpf_ctrl)
staticmethod
Set pyRevit colour resources on any WPF control.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
wpf_ctrl
|
any WPF FrameworkElement with a Resources dict. |
required |
Source code in pyrevitlib/pyrevit/forms/_ipy.py
merge_resource_dict(xaml_source)
Merge a ResourceDictionary xaml file into this control's resources.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
xaml_source
|
str
|
absolute path to a ResourceDictionary xaml file. |
required |
Source code in pyrevitlib/pyrevit/forms/_ipy.py
get_locale_string(string_name)
Return a localised string from the merged ResourceDictionary.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
string_name
|
str
|
resource key. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
str |
localised string value. |
Source code in pyrevitlib/pyrevit/forms/_ipy.py
set_image_source_file(wpf_element, image_file)
staticmethod
Set the source of a WPF Image element from a file path.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
wpf_element
|
Image
|
target image element. |
required |
image_file
|
str
|
absolute or command-relative image path. |
required |
Source code in pyrevitlib/pyrevit/forms/_ipy.py
set_image_source(wpf_element, image_file)
Set the source of a WPF Image element from a file path.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
wpf_element
|
Image
|
target image element. |
required |
image_file
|
str
|
absolute or command-relative image path. |
required |
Source code in pyrevitlib/pyrevit/forms/_ipy.py
hide_element(*wpf_elements)
staticmethod
Collapse one or more WPF elements (removes from layout).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
*wpf_elements
|
list[UIElement]
|
elements to collapse. |
()
|
Source code in pyrevitlib/pyrevit/forms/_ipy.py
show_element(*wpf_elements)
staticmethod
Make one or more collapsed WPF elements visible.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
*wpf_elements
|
list[UIElement]
|
elements to show. |
()
|
Source code in pyrevitlib/pyrevit/forms/_ipy.py
toggle_element(*wpf_elements)
staticmethod
Toggle visibility of one or more WPF elements.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
*wpf_elements
|
list[UIElement]
|
elements to toggle. |
()
|
Source code in pyrevitlib/pyrevit/forms/_ipy.py
disable_element(*wpf_elements)
staticmethod
Disable one or more WPF elements.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
*wpf_elements
|
list[UIElement]
|
elements to disable. |
()
|
enable_element(*wpf_elements)
staticmethod
Enable one or more WPF elements.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
*wpf_elements
|
list[UIElement]
|
elements to enable. |
()
|
dispatch(func, *args, **kwargs)
Run a function on the opposite thread.
When called from the UI thread, spawns a background thread. When called from a background thread, marshals execution back onto the UI thread via the Dispatcher. This makes the pattern for background work + UI updates symmetrical:
# on UI thread — starts background work
self.dispatch(self._do_work)
def _do_work(self):
...heavy work...
# on background thread — posts UI update
self.dispatch(self._update_label, "done")
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
func
|
Callable
|
function to run. |
required |
*args
|
positional arguments forwarded to func. |
()
|
|
**kwargs
|
keyword arguments forwarded to func. |
{}
|
Source code in pyrevitlib/pyrevit/forms/_ipy.py
handle_url_click(sender, args)
XAML event handler: open a Hyperlink URL in the default browser.
Wire up in XAML with: RequestNavigate="handle_url_click"
Source code in pyrevitlib/pyrevit/forms/_ipy.py
TemplateUserInputWindow(context, title, width, height, **kwargs)
Bases: WPFWindow
Base class for pyRevit user input standard forms.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
context
|
any
|
window context element(s) |
required |
title
|
str
|
window title |
required |
width
|
int
|
window width |
required |
height
|
int
|
window height |
required |
**kwargs
|
Any
|
other arguments to be passed to :func: |
{}
|
Initialize user input window.
Source code in pyrevitlib/pyrevit/forms/_ipy.py
Attributes
xaml_source = 'BaseWindow.xaml'
class-attribute
instance-attribute
default_title_key = 'pyRevit.DefaultWindowTitle'
class-attribute
instance-attribute
Title = title
instance-attribute
Width = width
instance-attribute
Height = height
instance-attribute
response = None
instance-attribute
Owner = owner
instance-attribute
WindowStartupLocation = framework.Windows.WindowStartupLocation.CenterOwner
instance-attribute
pyrevit_version
property
Active pyRevit formatted version string, e.g. '4.9-beta'.
Functions
show(context, title=None, width=DEFAULT_INPUTWINDOW_WIDTH, height=DEFAULT_INPUTWINDOW_HEIGHT, **kwargs)
classmethod
Show user input window.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
context
|
any
|
window context element(s) |
required |
title
|
str
|
window title |
None
|
width
|
int
|
window width |
DEFAULT_INPUTWINDOW_WIDTH
|
height
|
int
|
window height |
DEFAULT_INPUTWINDOW_HEIGHT
|
**kwargs
|
any
|
other arguments to be passed to window |
{}
|
Source code in pyrevitlib/pyrevit/forms/_ipy.py
setup_resources(wpf_ctrl)
staticmethod
Set pyRevit colour resources on any WPF control.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
wpf_ctrl
|
any WPF FrameworkElement with a Resources dict. |
required |
Source code in pyrevitlib/pyrevit/forms/_ipy.py
merge_resource_dict(xaml_source)
Merge a ResourceDictionary xaml file into this control's resources.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
xaml_source
|
str
|
absolute path to a ResourceDictionary xaml file. |
required |
Source code in pyrevitlib/pyrevit/forms/_ipy.py
get_locale_string(string_name)
Return a localised string from the merged ResourceDictionary.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
string_name
|
str
|
resource key. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
str |
localised string value. |
Source code in pyrevitlib/pyrevit/forms/_ipy.py
set_image_source_file(wpf_element, image_file)
staticmethod
Set the source of a WPF Image element from a file path.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
wpf_element
|
Image
|
target image element. |
required |
image_file
|
str
|
absolute or command-relative image path. |
required |
Source code in pyrevitlib/pyrevit/forms/_ipy.py
set_image_source(wpf_element, image_file)
Set the source of a WPF Image element from a file path.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
wpf_element
|
Image
|
target image element. |
required |
image_file
|
str
|
absolute or command-relative image path. |
required |
Source code in pyrevitlib/pyrevit/forms/_ipy.py
hide_element(*wpf_elements)
staticmethod
Collapse one or more WPF elements (removes from layout).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
*wpf_elements
|
list[UIElement]
|
elements to collapse. |
()
|
Source code in pyrevitlib/pyrevit/forms/_ipy.py
show_element(*wpf_elements)
staticmethod
Make one or more collapsed WPF elements visible.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
*wpf_elements
|
list[UIElement]
|
elements to show. |
()
|
Source code in pyrevitlib/pyrevit/forms/_ipy.py
toggle_element(*wpf_elements)
staticmethod
Toggle visibility of one or more WPF elements.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
*wpf_elements
|
list[UIElement]
|
elements to toggle. |
()
|
Source code in pyrevitlib/pyrevit/forms/_ipy.py
disable_element(*wpf_elements)
staticmethod
Disable one or more WPF elements.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
*wpf_elements
|
list[UIElement]
|
elements to disable. |
()
|
enable_element(*wpf_elements)
staticmethod
Enable one or more WPF elements.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
*wpf_elements
|
list[UIElement]
|
elements to enable. |
()
|
dispatch(func, *args, **kwargs)
Run a function on the opposite thread.
When called from the UI thread, spawns a background thread. When called from a background thread, marshals execution back onto the UI thread via the Dispatcher. This makes the pattern for background work + UI updates symmetrical:
# on UI thread — starts background work
self.dispatch(self._do_work)
def _do_work(self):
...heavy work...
# on background thread — posts UI update
self.dispatch(self._update_label, "done")
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
func
|
Callable
|
function to run. |
required |
*args
|
positional arguments forwarded to func. |
()
|
|
**kwargs
|
keyword arguments forwarded to func. |
{}
|
Source code in pyrevitlib/pyrevit/forms/_ipy.py
handle_url_click(sender, args)
XAML event handler: open a Hyperlink URL in the default browser.
Wire up in XAML with: RequestNavigate="handle_url_click"
Source code in pyrevitlib/pyrevit/forms/_ipy.py
load_xaml(xaml_source, literal_string=False, handle_esc=True, set_owner=True)
Load the window XAML file.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
xaml_source
|
str
|
The XAML content or file path to load. |
required |
literal_string
|
bool
|
True if |
False
|
handle_esc
|
bool
|
Whether the ESC key should be handled. Defaults to True. |
True
|
set_owner
|
bool
|
Whether to set the window owner. Defaults to True. |
True
|
Source code in pyrevitlib/pyrevit/forms/_ipy.py
setup_owner()
setup_default_handlers()
handle_input_key(sender, args)
set_icon(icon_path)
setup_icon()
hide()
show_dialog()
TemplateListItem(orig_item, checked=False, checkable=True, name_attr=None)
Bases: Reactive
Base class for checkbox option wrapping another object.
Initialize the checkbox option and wrap given obj.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
orig_item
|
any
|
Object to wrap (must have name property or be convertable to string with str() |
required |
checked
|
bool
|
Initial state. Defaults to False |
False
|
checkable
|
bool
|
Use checkbox for items |
True
|
name_attr
|
str
|
Get this attribute of wrapped object as name |
None
|
Source code in pyrevitlib/pyrevit/forms/_ipy.py
Attributes
item = orig_item
instance-attribute
state = checked
instance-attribute
name
property
Name property.
checkable
property
writable
List Item CheckBox Visibility.
Functions
unwrap()
checked(value)
add_PropertyChanged(value)
remove_PropertyChanged(value)
OnPropertyChanged(prop_name)
Called when a property is changed.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
prop_name
|
str
|
property name |
required |
Source code in pyrevitlib/pyrevit/forms/_ipy.py
ParamDef(name, istype, definition, isreadonly, isunit, storagetype, displayvalue, hasvalue, grouptype, isshared, paramid, checked=False)
Bases: TemplateListItem
Parameter definition for :func:select_parameters.
Inherits from :obj:TemplateListItem for use with SelectFromList.
Attributes:
| Name | Type | Description |
|---|---|---|
name |
str
|
parameter name |
istype |
bool
|
true if type parameter, otherwise false |
definition |
Definition
|
parameter definition object |
isreadonly |
bool
|
true if the parameter value can't be edited |
isunit |
bool
|
true if its ForgeTypeId is measurable |
storagetype |
StorageType
|
String, Integer, Double or ElementId |
displayvalue |
str
|
display string of the current parameter value, or None |
hasvalue |
bool
|
true if the parameter has a value to display |
grouptype |
str
|
name of parameter group |
isshared |
bool
|
is the parameter shared |
paramid |
str
|
stringified parameter ElementId (integer id) |
Source code in pyrevitlib/pyrevit/forms/_ipy.py
Attributes
istype = istype
instance-attribute
definition = definition
instance-attribute
isreadonly = isreadonly
instance-attribute
isunit = isunit
instance-attribute
storagetype = storagetype
instance-attribute
displayvalue = displayvalue
instance-attribute
hasvalue = hasvalue
instance-attribute
grouptype = grouptype
instance-attribute
isshared = isshared
instance-attribute
paramid = paramid
instance-attribute
name
property
Parameter name.
item = orig_item
instance-attribute
state = checked
instance-attribute
checkable
property
writable
List Item CheckBox Visibility.
Functions
unwrap()
add_PropertyChanged(value)
remove_PropertyChanged(value)
OnPropertyChanged(prop_name)
Called when a property is changed.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
prop_name
|
str
|
property name |
required |
Source code in pyrevitlib/pyrevit/forms/_ipy.py
SelectFromList(context, title, width, height, **kwargs)
Bases: TemplateUserInputWindow
Standard form to select from a list of items.
Any object can be passed in a list to the context argument. This class
wraps the objects passed to context, in TemplateListItem.
This class provides the necessary mechanism to make this form work both
for selecting items from a list, and from a list of checkboxes. See the
list of arguments below for additional options and features.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
context
|
list[str] or dict[list[str]]
|
list of items to be selected from OR dict of list of items to be selected from. use dict when input items need to be grouped e.g. List of sheets grouped by sheet set. |
required |
title
|
str
|
window title. see super class for defaults. |
required |
width
|
int
|
window width. see super class for defaults. |
required |
height
|
int
|
window height. see super class for defaults. |
required |
Other Parameters:
| Name | Type | Description |
|---|---|---|
button_name |
str
|
name of select button. defaults to 'Select' |
name_attr |
str
|
object attribute that should be read as item name. |
multiselect |
bool
|
allow multi-selection (uses check boxes). defaults to False |
info_panel |
bool
|
show information panel and fill with .description property of item |
return_all |
bool
|
return all items. This is handly when some input items have states and the script needs to check the state changes on all items. This options works in multiselect mode only. defaults to False |
filterfunc |
function
|
filter function to be applied to context items. |
resetfunc |
function
|
reset function to be called when user clicks on Reset button |
group_selector_title |
str
|
title for list group selector. defaults to 'List Group' |
default_group |
str
|
name of defautl group to be selected |
sort_groups |
str
|
Determines the sorting type applied to the list groups. This attribute can take one of the following values: 'sorted': This will sort the groups in standard alphabetical order 'natural': This will sort the groups in a manner that is more intuitive for human perception, especially when there are numbers involved. 'unsorted': The groups will maintain the original order in which they were provided, without any reordering. Defaults to 'sorted'. |
Examples:
from pyrevit import forms
items = ['item1', 'item2', 'item3']
forms.SelectFromList.show(items, button_name='Select Item')
['item1']
from pyrevit import forms
ops = [viewsheet1, viewsheet2, viewsheet3]
res = forms.SelectFromList.show(ops,
multiselect=False,
name_attr='Name',
button_name='Select Sheet')
from pyrevit import forms
ops = {'Sheet Set A': [viewsheet1, viewsheet2, viewsheet3],
'Sheet Set B': [viewsheet4, viewsheet5, viewsheet6]}
res = forms.SelectFromList.show(ops,
multiselect=True,
name_attr='Name',
group_selector_title='Sheet Sets',
button_name='Select Sheets',
sort_groups='sorted')
This module also provides a wrapper base class :obj:TemplateListItem
for when the checkbox option is wrapping another element,
e.g. a Revit ViewSheet. Derive from this base class and define the
name property to customize how the checkbox is named on the dialog.
from pyrevit import forms
class MyOption(forms.TemplateListItem):
@property
def name(self):
return '{} - {}{}'.format(self.item.SheetNumber,
self.item.SheetNumber)
ops = [MyOption('op1'), MyOption('op2', True), MyOption('op3')]
res = forms.SelectFromList.show(ops,
multiselect=True,
button_name='Select Item')
[bool(x) for x in res] # or [x.state for x in res]
[True, False, True]
Initialize user input window.
Source code in pyrevitlib/pyrevit/forms/_ipy.py
Attributes
in_check = False
class-attribute
instance-attribute
in_uncheck = False
class-attribute
instance-attribute
xaml_source = 'SelectFromList.xaml'
class-attribute
instance-attribute
default_title_key = 'SelectFromList.DefaultTitle'
class-attribute
instance-attribute
use_regex
property
Is using regex?
pyrevit_version
property
Active pyRevit formatted version string, e.g. '4.9-beta'.
Title = title
instance-attribute
Width = width
instance-attribute
Height = height
instance-attribute
response = None
instance-attribute
Owner = owner
instance-attribute
WindowStartupLocation = framework.Windows.WindowStartupLocation.CenterOwner
instance-attribute
Functions
toggle_all(sender, args)
check_all(sender, args)
uncheck_all(sender, args)
check_selected(sender, args)
Mark selected checkboxes as checked.
Source code in pyrevitlib/pyrevit/forms/_ipy.py
uncheck_selected(sender, args)
Mark selected checkboxes as unchecked.
Source code in pyrevitlib/pyrevit/forms/_ipy.py
button_reset(sender, args)
button_select(sender, args)
search_txt_changed(sender, args)
Handle text change in search box.
Source code in pyrevitlib/pyrevit/forms/_ipy.py
selection_changed(sender, args)
selected_item_changed(sender, args)
Handle selected item change.
Source code in pyrevitlib/pyrevit/forms/_ipy.py
toggle_regex(sender, args)
Activate regex in search.
Source code in pyrevitlib/pyrevit/forms/_ipy.py
clear_search(sender, args)
show(context, title=None, width=DEFAULT_INPUTWINDOW_WIDTH, height=DEFAULT_INPUTWINDOW_HEIGHT, exitscript=False, **kwargs)
classmethod
Show user input window. Args: context (any): window context element(s) width: ... height: ... exitscript: exit the script if the user cancels the dialog. Defaults to False
Source code in pyrevitlib/pyrevit/forms/_ipy.py
setup_resources(wpf_ctrl)
staticmethod
Set pyRevit colour resources on any WPF control.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
wpf_ctrl
|
any WPF FrameworkElement with a Resources dict. |
required |
Source code in pyrevitlib/pyrevit/forms/_ipy.py
merge_resource_dict(xaml_source)
Merge a ResourceDictionary xaml file into this control's resources.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
xaml_source
|
str
|
absolute path to a ResourceDictionary xaml file. |
required |
Source code in pyrevitlib/pyrevit/forms/_ipy.py
get_locale_string(string_name)
Return a localised string from the merged ResourceDictionary.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
string_name
|
str
|
resource key. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
str |
localised string value. |
Source code in pyrevitlib/pyrevit/forms/_ipy.py
set_image_source_file(wpf_element, image_file)
staticmethod
Set the source of a WPF Image element from a file path.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
wpf_element
|
Image
|
target image element. |
required |
image_file
|
str
|
absolute or command-relative image path. |
required |
Source code in pyrevitlib/pyrevit/forms/_ipy.py
set_image_source(wpf_element, image_file)
Set the source of a WPF Image element from a file path.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
wpf_element
|
Image
|
target image element. |
required |
image_file
|
str
|
absolute or command-relative image path. |
required |
Source code in pyrevitlib/pyrevit/forms/_ipy.py
hide_element(*wpf_elements)
staticmethod
Collapse one or more WPF elements (removes from layout).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
*wpf_elements
|
list[UIElement]
|
elements to collapse. |
()
|
Source code in pyrevitlib/pyrevit/forms/_ipy.py
show_element(*wpf_elements)
staticmethod
Make one or more collapsed WPF elements visible.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
*wpf_elements
|
list[UIElement]
|
elements to show. |
()
|
Source code in pyrevitlib/pyrevit/forms/_ipy.py
toggle_element(*wpf_elements)
staticmethod
Toggle visibility of one or more WPF elements.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
*wpf_elements
|
list[UIElement]
|
elements to toggle. |
()
|
Source code in pyrevitlib/pyrevit/forms/_ipy.py
disable_element(*wpf_elements)
staticmethod
Disable one or more WPF elements.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
*wpf_elements
|
list[UIElement]
|
elements to disable. |
()
|
enable_element(*wpf_elements)
staticmethod
Enable one or more WPF elements.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
*wpf_elements
|
list[UIElement]
|
elements to enable. |
()
|
dispatch(func, *args, **kwargs)
Run a function on the opposite thread.
When called from the UI thread, spawns a background thread. When called from a background thread, marshals execution back onto the UI thread via the Dispatcher. This makes the pattern for background work + UI updates symmetrical:
# on UI thread — starts background work
self.dispatch(self._do_work)
def _do_work(self):
...heavy work...
# on background thread — posts UI update
self.dispatch(self._update_label, "done")
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
func
|
Callable
|
function to run. |
required |
*args
|
positional arguments forwarded to func. |
()
|
|
**kwargs
|
keyword arguments forwarded to func. |
{}
|
Source code in pyrevitlib/pyrevit/forms/_ipy.py
handle_url_click(sender, args)
XAML event handler: open a Hyperlink URL in the default browser.
Wire up in XAML with: RequestNavigate="handle_url_click"
Source code in pyrevitlib/pyrevit/forms/_ipy.py
load_xaml(xaml_source, literal_string=False, handle_esc=True, set_owner=True)
Load the window XAML file.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
xaml_source
|
str
|
The XAML content or file path to load. |
required |
literal_string
|
bool
|
True if |
False
|
handle_esc
|
bool
|
Whether the ESC key should be handled. Defaults to True. |
True
|
set_owner
|
bool
|
Whether to set the window owner. Defaults to True. |
True
|
Source code in pyrevitlib/pyrevit/forms/_ipy.py
setup_owner()
setup_default_handlers()
handle_input_key(sender, args)
set_icon(icon_path)
setup_icon()
hide()
show_dialog()
CommandSwitchWindow(context, title, width, height, **kwargs)
Bases: TemplateUserInputWindow
Standard form to select from a list of command options.
Other Parameters:
| Name | Type | Description |
|---|---|---|
context |
list[str]
|
list of command options to choose from |
switches |
list[str]
|
list of on/off switches |
message |
str
|
window title message |
config |
dict
|
dictionary of config dicts for options or switches |
recognize_access_key |
bool
|
recognize '_' as mark of access key |
Returns:
| Type | Description |
|---|---|
str | tuple[str, dict]
|
name of selected option.
if |
Examples:
This is an example with series of command options:
from pyrevit import forms
ops = ['option1', 'option2', 'option3', 'option4']
forms.CommandSwitchWindow.show(ops, message='Select Option')
'option2'
A more advanced example of combining command options, on/off switches, and option or switch configuration options:
from pyrevit import forms
ops = ['option1', 'option2', 'option3', 'option4']
switches = ['switch1', 'switch2']
cfgs = {'option1': { 'background': '0xFF55FF'}}
rops, rswitches = forms.CommandSwitchWindow.show(
ops,
switches=switches,
message='Select Option',
config=cfgs,
recognize_access_key=False
)
rops
'option2'
rswitches
{'switch1': False, 'switch2': True}
Initialize user input window.
Source code in pyrevitlib/pyrevit/forms/_ipy.py
Attributes
xaml_source = 'CommandSwitchWindow.xaml'
class-attribute
instance-attribute
pyrevit_version
property
Active pyRevit formatted version string, e.g. '4.9-beta'.
default_title_key = 'pyRevit.DefaultWindowTitle'
class-attribute
instance-attribute
Title = title
instance-attribute
Width = width
instance-attribute
Height = height
instance-attribute
response = None
instance-attribute
Owner = owner
instance-attribute
WindowStartupLocation = framework.Windows.WindowStartupLocation.CenterOwner
instance-attribute
Functions
handle_click(sender, args)
handle_input_key(sender, args)
Handle keyboard inputs.
Source code in pyrevitlib/pyrevit/forms/_ipy.py
search_txt_changed(sender, args)
process_option(sender, args)
setup_resources(wpf_ctrl)
staticmethod
Set pyRevit colour resources on any WPF control.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
wpf_ctrl
|
any WPF FrameworkElement with a Resources dict. |
required |
Source code in pyrevitlib/pyrevit/forms/_ipy.py
merge_resource_dict(xaml_source)
Merge a ResourceDictionary xaml file into this control's resources.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
xaml_source
|
str
|
absolute path to a ResourceDictionary xaml file. |
required |
Source code in pyrevitlib/pyrevit/forms/_ipy.py
get_locale_string(string_name)
Return a localised string from the merged ResourceDictionary.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
string_name
|
str
|
resource key. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
str |
localised string value. |
Source code in pyrevitlib/pyrevit/forms/_ipy.py
set_image_source_file(wpf_element, image_file)
staticmethod
Set the source of a WPF Image element from a file path.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
wpf_element
|
Image
|
target image element. |
required |
image_file
|
str
|
absolute or command-relative image path. |
required |
Source code in pyrevitlib/pyrevit/forms/_ipy.py
set_image_source(wpf_element, image_file)
Set the source of a WPF Image element from a file path.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
wpf_element
|
Image
|
target image element. |
required |
image_file
|
str
|
absolute or command-relative image path. |
required |
Source code in pyrevitlib/pyrevit/forms/_ipy.py
hide_element(*wpf_elements)
staticmethod
Collapse one or more WPF elements (removes from layout).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
*wpf_elements
|
list[UIElement]
|
elements to collapse. |
()
|
Source code in pyrevitlib/pyrevit/forms/_ipy.py
show_element(*wpf_elements)
staticmethod
Make one or more collapsed WPF elements visible.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
*wpf_elements
|
list[UIElement]
|
elements to show. |
()
|
Source code in pyrevitlib/pyrevit/forms/_ipy.py
toggle_element(*wpf_elements)
staticmethod
Toggle visibility of one or more WPF elements.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
*wpf_elements
|
list[UIElement]
|
elements to toggle. |
()
|
Source code in pyrevitlib/pyrevit/forms/_ipy.py
disable_element(*wpf_elements)
staticmethod
Disable one or more WPF elements.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
*wpf_elements
|
list[UIElement]
|
elements to disable. |
()
|
enable_element(*wpf_elements)
staticmethod
Enable one or more WPF elements.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
*wpf_elements
|
list[UIElement]
|
elements to enable. |
()
|
dispatch(func, *args, **kwargs)
Run a function on the opposite thread.
When called from the UI thread, spawns a background thread. When called from a background thread, marshals execution back onto the UI thread via the Dispatcher. This makes the pattern for background work + UI updates symmetrical:
# on UI thread — starts background work
self.dispatch(self._do_work)
def _do_work(self):
...heavy work...
# on background thread — posts UI update
self.dispatch(self._update_label, "done")
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
func
|
Callable
|
function to run. |
required |
*args
|
positional arguments forwarded to func. |
()
|
|
**kwargs
|
keyword arguments forwarded to func. |
{}
|
Source code in pyrevitlib/pyrevit/forms/_ipy.py
handle_url_click(sender, args)
XAML event handler: open a Hyperlink URL in the default browser.
Wire up in XAML with: RequestNavigate="handle_url_click"
Source code in pyrevitlib/pyrevit/forms/_ipy.py
load_xaml(xaml_source, literal_string=False, handle_esc=True, set_owner=True)
Load the window XAML file.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
xaml_source
|
str
|
The XAML content or file path to load. |
required |
literal_string
|
bool
|
True if |
False
|
handle_esc
|
bool
|
Whether the ESC key should be handled. Defaults to True. |
True
|
set_owner
|
bool
|
Whether to set the window owner. Defaults to True. |
True
|
Source code in pyrevitlib/pyrevit/forms/_ipy.py
setup_owner()
setup_default_handlers()
set_icon(icon_path)
setup_icon()
hide()
show(context, title=None, width=DEFAULT_INPUTWINDOW_WIDTH, height=DEFAULT_INPUTWINDOW_HEIGHT, **kwargs)
classmethod
Show user input window.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
context
|
any
|
window context element(s) |
required |
title
|
str
|
window title |
None
|
width
|
int
|
window width |
DEFAULT_INPUTWINDOW_WIDTH
|
height
|
int
|
window height |
DEFAULT_INPUTWINDOW_HEIGHT
|
**kwargs
|
any
|
other arguments to be passed to window |
{}
|
Source code in pyrevitlib/pyrevit/forms/_ipy.py
show_dialog()
GetValueWindow(context, title, width, height, **kwargs)
Bases: TemplateUserInputWindow
Standard form to get simple values from user.
Examples:
from pyrevit import forms
items = ['item1', 'item2', 'item3']
forms.SelectFromList.show(items, button_name='Select Item')
['item1']
Initialize user input window.
Source code in pyrevitlib/pyrevit/forms/_ipy.py
Attributes
xaml_source = 'GetValueWindow.xaml'
class-attribute
instance-attribute
pyrevit_version
property
Active pyRevit formatted version string, e.g. '4.9-beta'.
default_title_key = 'pyRevit.DefaultWindowTitle'
class-attribute
instance-attribute
Title = title
instance-attribute
Width = width
instance-attribute
Height = height
instance-attribute
response = None
instance-attribute
Owner = owner
instance-attribute
WindowStartupLocation = framework.Windows.WindowStartupLocation.CenterOwner
instance-attribute
Functions
string_value_changed(sender, args)
Handle string vlaue update event.
Source code in pyrevitlib/pyrevit/forms/_ipy.py
select(sender, args)
Process input data and set the response.
Source code in pyrevitlib/pyrevit/forms/_ipy.py
setup_resources(wpf_ctrl)
staticmethod
Set pyRevit colour resources on any WPF control.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
wpf_ctrl
|
any WPF FrameworkElement with a Resources dict. |
required |
Source code in pyrevitlib/pyrevit/forms/_ipy.py
merge_resource_dict(xaml_source)
Merge a ResourceDictionary xaml file into this control's resources.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
xaml_source
|
str
|
absolute path to a ResourceDictionary xaml file. |
required |
Source code in pyrevitlib/pyrevit/forms/_ipy.py
get_locale_string(string_name)
Return a localised string from the merged ResourceDictionary.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
string_name
|
str
|
resource key. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
str |
localised string value. |
Source code in pyrevitlib/pyrevit/forms/_ipy.py
set_image_source_file(wpf_element, image_file)
staticmethod
Set the source of a WPF Image element from a file path.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
wpf_element
|
Image
|
target image element. |
required |
image_file
|
str
|
absolute or command-relative image path. |
required |
Source code in pyrevitlib/pyrevit/forms/_ipy.py
set_image_source(wpf_element, image_file)
Set the source of a WPF Image element from a file path.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
wpf_element
|
Image
|
target image element. |
required |
image_file
|
str
|
absolute or command-relative image path. |
required |
Source code in pyrevitlib/pyrevit/forms/_ipy.py
hide_element(*wpf_elements)
staticmethod
Collapse one or more WPF elements (removes from layout).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
*wpf_elements
|
list[UIElement]
|
elements to collapse. |
()
|
Source code in pyrevitlib/pyrevit/forms/_ipy.py
show_element(*wpf_elements)
staticmethod
Make one or more collapsed WPF elements visible.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
*wpf_elements
|
list[UIElement]
|
elements to show. |
()
|
Source code in pyrevitlib/pyrevit/forms/_ipy.py
toggle_element(*wpf_elements)
staticmethod
Toggle visibility of one or more WPF elements.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
*wpf_elements
|
list[UIElement]
|
elements to toggle. |
()
|
Source code in pyrevitlib/pyrevit/forms/_ipy.py
disable_element(*wpf_elements)
staticmethod
Disable one or more WPF elements.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
*wpf_elements
|
list[UIElement]
|
elements to disable. |
()
|
enable_element(*wpf_elements)
staticmethod
Enable one or more WPF elements.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
*wpf_elements
|
list[UIElement]
|
elements to enable. |
()
|
dispatch(func, *args, **kwargs)
Run a function on the opposite thread.
When called from the UI thread, spawns a background thread. When called from a background thread, marshals execution back onto the UI thread via the Dispatcher. This makes the pattern for background work + UI updates symmetrical:
# on UI thread — starts background work
self.dispatch(self._do_work)
def _do_work(self):
...heavy work...
# on background thread — posts UI update
self.dispatch(self._update_label, "done")
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
func
|
Callable
|
function to run. |
required |
*args
|
positional arguments forwarded to func. |
()
|
|
**kwargs
|
keyword arguments forwarded to func. |
{}
|
Source code in pyrevitlib/pyrevit/forms/_ipy.py
handle_url_click(sender, args)
XAML event handler: open a Hyperlink URL in the default browser.
Wire up in XAML with: RequestNavigate="handle_url_click"
Source code in pyrevitlib/pyrevit/forms/_ipy.py
load_xaml(xaml_source, literal_string=False, handle_esc=True, set_owner=True)
Load the window XAML file.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
xaml_source
|
str
|
The XAML content or file path to load. |
required |
literal_string
|
bool
|
True if |
False
|
handle_esc
|
bool
|
Whether the ESC key should be handled. Defaults to True. |
True
|
set_owner
|
bool
|
Whether to set the window owner. Defaults to True. |
True
|
Source code in pyrevitlib/pyrevit/forms/_ipy.py
setup_owner()
setup_default_handlers()
handle_input_key(sender, args)
set_icon(icon_path)
setup_icon()
hide()
show(context, title=None, width=DEFAULT_INPUTWINDOW_WIDTH, height=DEFAULT_INPUTWINDOW_HEIGHT, **kwargs)
classmethod
Show user input window.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
context
|
any
|
window context element(s) |
required |
title
|
str
|
window title |
None
|
width
|
int
|
window width |
DEFAULT_INPUTWINDOW_WIDTH
|
height
|
int
|
window height |
DEFAULT_INPUTWINDOW_HEIGHT
|
**kwargs
|
any
|
other arguments to be passed to window |
{}
|
Source code in pyrevitlib/pyrevit/forms/_ipy.py
show_dialog()
TemplatePromptBar(height=32, **kwargs)
Bases: WPFWindow
Template context-manager class for creating prompt bars.
Prompt bars are show at the top of the active Revit window and are designed for better prompt visibility.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
height
|
int
|
window height |
32
|
**kwargs
|
Any
|
other arguments to be passed to :func: |
{}
|
Initialize user prompt window.
Source code in pyrevitlib/pyrevit/forms/_ipy.py
Attributes
xaml_source = 'TemplatePromptBar.xaml'
class-attribute
instance-attribute
user_height = height
instance-attribute
pyrevit_version
property
Active pyRevit formatted version string, e.g. '4.9-beta'.
Functions
update_window()
Update the prompt bar to match Revit window.
Source code in pyrevitlib/pyrevit/forms/_ipy.py
setup_resources(wpf_ctrl)
staticmethod
Set pyRevit colour resources on any WPF control.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
wpf_ctrl
|
any WPF FrameworkElement with a Resources dict. |
required |
Source code in pyrevitlib/pyrevit/forms/_ipy.py
merge_resource_dict(xaml_source)
Merge a ResourceDictionary xaml file into this control's resources.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
xaml_source
|
str
|
absolute path to a ResourceDictionary xaml file. |
required |
Source code in pyrevitlib/pyrevit/forms/_ipy.py
get_locale_string(string_name)
Return a localised string from the merged ResourceDictionary.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
string_name
|
str
|
resource key. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
str |
localised string value. |
Source code in pyrevitlib/pyrevit/forms/_ipy.py
set_image_source_file(wpf_element, image_file)
staticmethod
Set the source of a WPF Image element from a file path.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
wpf_element
|
Image
|
target image element. |
required |
image_file
|
str
|
absolute or command-relative image path. |
required |
Source code in pyrevitlib/pyrevit/forms/_ipy.py
set_image_source(wpf_element, image_file)
Set the source of a WPF Image element from a file path.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
wpf_element
|
Image
|
target image element. |
required |
image_file
|
str
|
absolute or command-relative image path. |
required |
Source code in pyrevitlib/pyrevit/forms/_ipy.py
hide_element(*wpf_elements)
staticmethod
Collapse one or more WPF elements (removes from layout).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
*wpf_elements
|
list[UIElement]
|
elements to collapse. |
()
|
Source code in pyrevitlib/pyrevit/forms/_ipy.py
show_element(*wpf_elements)
staticmethod
Make one or more collapsed WPF elements visible.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
*wpf_elements
|
list[UIElement]
|
elements to show. |
()
|
Source code in pyrevitlib/pyrevit/forms/_ipy.py
toggle_element(*wpf_elements)
staticmethod
Toggle visibility of one or more WPF elements.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
*wpf_elements
|
list[UIElement]
|
elements to toggle. |
()
|
Source code in pyrevitlib/pyrevit/forms/_ipy.py
disable_element(*wpf_elements)
staticmethod
Disable one or more WPF elements.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
*wpf_elements
|
list[UIElement]
|
elements to disable. |
()
|
enable_element(*wpf_elements)
staticmethod
Enable one or more WPF elements.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
*wpf_elements
|
list[UIElement]
|
elements to enable. |
()
|
dispatch(func, *args, **kwargs)
Run a function on the opposite thread.
When called from the UI thread, spawns a background thread. When called from a background thread, marshals execution back onto the UI thread via the Dispatcher. This makes the pattern for background work + UI updates symmetrical:
# on UI thread — starts background work
self.dispatch(self._do_work)
def _do_work(self):
...heavy work...
# on background thread — posts UI update
self.dispatch(self._update_label, "done")
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
func
|
Callable
|
function to run. |
required |
*args
|
positional arguments forwarded to func. |
()
|
|
**kwargs
|
keyword arguments forwarded to func. |
{}
|
Source code in pyrevitlib/pyrevit/forms/_ipy.py
handle_url_click(sender, args)
XAML event handler: open a Hyperlink URL in the default browser.
Wire up in XAML with: RequestNavigate="handle_url_click"
Source code in pyrevitlib/pyrevit/forms/_ipy.py
load_xaml(xaml_source, literal_string=False, handle_esc=True, set_owner=True)
Load the window XAML file.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
xaml_source
|
str
|
The XAML content or file path to load. |
required |
literal_string
|
bool
|
True if |
False
|
handle_esc
|
bool
|
Whether the ESC key should be handled. Defaults to True. |
True
|
set_owner
|
bool
|
Whether to set the window owner. Defaults to True. |
True
|
Source code in pyrevitlib/pyrevit/forms/_ipy.py
setup_owner()
setup_default_handlers()
handle_input_key(sender, args)
set_icon(icon_path)
setup_icon()
hide()
show(modal=False)
show_dialog()
WarningBar(height=32, **kwargs)
Bases: TemplatePromptBar
Show warning bar at the top of Revit window.
Other Parameters:
| Name | Type | Description |
|---|---|---|
title |
string
|
warning bar text |
background |
SolidColorBrush
|
background brush |
foreground |
SolidColorBrush
|
text brush |
Examples:
Initialize user prompt window.
Source code in pyrevitlib/pyrevit/forms/_ipy.py
Attributes
xaml_source = 'WarningBar.xaml'
class-attribute
instance-attribute
pyrevit_version
property
Active pyRevit formatted version string, e.g. '4.9-beta'.
user_height = height
instance-attribute
Functions
setup_resources(wpf_ctrl)
staticmethod
Set pyRevit colour resources on any WPF control.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
wpf_ctrl
|
any WPF FrameworkElement with a Resources dict. |
required |
Source code in pyrevitlib/pyrevit/forms/_ipy.py
merge_resource_dict(xaml_source)
Merge a ResourceDictionary xaml file into this control's resources.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
xaml_source
|
str
|
absolute path to a ResourceDictionary xaml file. |
required |
Source code in pyrevitlib/pyrevit/forms/_ipy.py
get_locale_string(string_name)
Return a localised string from the merged ResourceDictionary.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
string_name
|
str
|
resource key. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
str |
localised string value. |
Source code in pyrevitlib/pyrevit/forms/_ipy.py
set_image_source_file(wpf_element, image_file)
staticmethod
Set the source of a WPF Image element from a file path.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
wpf_element
|
Image
|
target image element. |
required |
image_file
|
str
|
absolute or command-relative image path. |
required |
Source code in pyrevitlib/pyrevit/forms/_ipy.py
set_image_source(wpf_element, image_file)
Set the source of a WPF Image element from a file path.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
wpf_element
|
Image
|
target image element. |
required |
image_file
|
str
|
absolute or command-relative image path. |
required |
Source code in pyrevitlib/pyrevit/forms/_ipy.py
hide_element(*wpf_elements)
staticmethod
Collapse one or more WPF elements (removes from layout).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
*wpf_elements
|
list[UIElement]
|
elements to collapse. |
()
|
Source code in pyrevitlib/pyrevit/forms/_ipy.py
show_element(*wpf_elements)
staticmethod
Make one or more collapsed WPF elements visible.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
*wpf_elements
|
list[UIElement]
|
elements to show. |
()
|
Source code in pyrevitlib/pyrevit/forms/_ipy.py
toggle_element(*wpf_elements)
staticmethod
Toggle visibility of one or more WPF elements.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
*wpf_elements
|
list[UIElement]
|
elements to toggle. |
()
|
Source code in pyrevitlib/pyrevit/forms/_ipy.py
disable_element(*wpf_elements)
staticmethod
Disable one or more WPF elements.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
*wpf_elements
|
list[UIElement]
|
elements to disable. |
()
|
enable_element(*wpf_elements)
staticmethod
Enable one or more WPF elements.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
*wpf_elements
|
list[UIElement]
|
elements to enable. |
()
|
dispatch(func, *args, **kwargs)
Run a function on the opposite thread.
When called from the UI thread, spawns a background thread. When called from a background thread, marshals execution back onto the UI thread via the Dispatcher. This makes the pattern for background work + UI updates symmetrical:
# on UI thread — starts background work
self.dispatch(self._do_work)
def _do_work(self):
...heavy work...
# on background thread — posts UI update
self.dispatch(self._update_label, "done")
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
func
|
Callable
|
function to run. |
required |
*args
|
positional arguments forwarded to func. |
()
|
|
**kwargs
|
keyword arguments forwarded to func. |
{}
|
Source code in pyrevitlib/pyrevit/forms/_ipy.py
handle_url_click(sender, args)
XAML event handler: open a Hyperlink URL in the default browser.
Wire up in XAML with: RequestNavigate="handle_url_click"
Source code in pyrevitlib/pyrevit/forms/_ipy.py
load_xaml(xaml_source, literal_string=False, handle_esc=True, set_owner=True)
Load the window XAML file.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
xaml_source
|
str
|
The XAML content or file path to load. |
required |
literal_string
|
bool
|
True if |
False
|
handle_esc
|
bool
|
Whether the ESC key should be handled. Defaults to True. |
True
|
set_owner
|
bool
|
Whether to set the window owner. Defaults to True. |
True
|
Source code in pyrevitlib/pyrevit/forms/_ipy.py
setup_owner()
setup_default_handlers()
handle_input_key(sender, args)
set_icon(icon_path)
setup_icon()
hide()
show(modal=False)
show_dialog()
conceal()
update_window()
Update the prompt bar to match Revit window.
Source code in pyrevitlib/pyrevit/forms/_ipy.py
ProgressBar(height=32, **kwargs)
Bases: TemplatePromptBar
Show progress bar at the top of Revit window.
Other Parameters:
| Name | Type | Description |
|---|---|---|
title |
string
|
progress bar text, defaults to 0/100 progress format |
indeterminate |
bool
|
create indeterminate progress bar |
cancellable |
bool
|
add cancel button to progress bar |
step |
int
|
update progress intervals |
Examples:
from pyrevit import forms
count = 1
with forms.ProgressBar(title='my command progress message') as pb:
# do stuff
pb.update_progress(count, 100)
count += 1
Progress bar title could also be customized to show the current and total progress values. In example below, the progress bar message will be in format "0 of 100"
By default progress bar updates the progress every time the .update_progress method is called. For operations with a large number of max steps, the gui update process time will have a significate effect on the overall execution time of the command. In these cases, set the value of step argument to something larger than 1. In example below, the progress bar updates once per every 10 units of progress.
Progress bar could also be set to indeterminate for operations of unknown length. In this case, the progress bar will show an infinitely running ribbon:
if cancellable is set on the object, a cancel button will show on the progress bar and .cancelled attribute will be set on the ProgressBar instance if users clicks on cancel button:
with forms.ProgressBar(title='message',
cancellable=True) as pb:
# do stuff
if pb.cancelled:
# wrap up and cancel operation
Initialize user prompt window.
Source code in pyrevitlib/pyrevit/forms/_ipy.py
Attributes
xaml_source = 'ProgressBar.xaml'
class-attribute
instance-attribute
title
property
writable
Progress bar title.
indeterminate
property
writable
Progress bar indeterminate state.
pyrevit_version
property
Active pyRevit formatted version string, e.g. '4.9-beta'.
user_height = height
instance-attribute
Functions
clicked_cancel(sender, args)
Handler for cancel button clicked event.
reset()
update_progress(new_value, max_value=1)
Update progress bar state with given min, max values.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
new_value
|
float
|
current progress value |
required |
max_value
|
float
|
total progress value |
1
|
Source code in pyrevitlib/pyrevit/forms/_ipy.py
setup_resources(wpf_ctrl)
staticmethod
Set pyRevit colour resources on any WPF control.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
wpf_ctrl
|
any WPF FrameworkElement with a Resources dict. |
required |
Source code in pyrevitlib/pyrevit/forms/_ipy.py
merge_resource_dict(xaml_source)
Merge a ResourceDictionary xaml file into this control's resources.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
xaml_source
|
str
|
absolute path to a ResourceDictionary xaml file. |
required |
Source code in pyrevitlib/pyrevit/forms/_ipy.py
get_locale_string(string_name)
Return a localised string from the merged ResourceDictionary.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
string_name
|
str
|
resource key. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
str |
localised string value. |
Source code in pyrevitlib/pyrevit/forms/_ipy.py
set_image_source_file(wpf_element, image_file)
staticmethod
Set the source of a WPF Image element from a file path.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
wpf_element
|
Image
|
target image element. |
required |
image_file
|
str
|
absolute or command-relative image path. |
required |
Source code in pyrevitlib/pyrevit/forms/_ipy.py
set_image_source(wpf_element, image_file)
Set the source of a WPF Image element from a file path.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
wpf_element
|
Image
|
target image element. |
required |
image_file
|
str
|
absolute or command-relative image path. |
required |
Source code in pyrevitlib/pyrevit/forms/_ipy.py
hide_element(*wpf_elements)
staticmethod
Collapse one or more WPF elements (removes from layout).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
*wpf_elements
|
list[UIElement]
|
elements to collapse. |
()
|
Source code in pyrevitlib/pyrevit/forms/_ipy.py
show_element(*wpf_elements)
staticmethod
Make one or more collapsed WPF elements visible.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
*wpf_elements
|
list[UIElement]
|
elements to show. |
()
|
Source code in pyrevitlib/pyrevit/forms/_ipy.py
toggle_element(*wpf_elements)
staticmethod
Toggle visibility of one or more WPF elements.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
*wpf_elements
|
list[UIElement]
|
elements to toggle. |
()
|
Source code in pyrevitlib/pyrevit/forms/_ipy.py
disable_element(*wpf_elements)
staticmethod
Disable one or more WPF elements.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
*wpf_elements
|
list[UIElement]
|
elements to disable. |
()
|
enable_element(*wpf_elements)
staticmethod
Enable one or more WPF elements.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
*wpf_elements
|
list[UIElement]
|
elements to enable. |
()
|
dispatch(func, *args, **kwargs)
Run a function on the opposite thread.
When called from the UI thread, spawns a background thread. When called from a background thread, marshals execution back onto the UI thread via the Dispatcher. This makes the pattern for background work + UI updates symmetrical:
# on UI thread — starts background work
self.dispatch(self._do_work)
def _do_work(self):
...heavy work...
# on background thread — posts UI update
self.dispatch(self._update_label, "done")
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
func
|
Callable
|
function to run. |
required |
*args
|
positional arguments forwarded to func. |
()
|
|
**kwargs
|
keyword arguments forwarded to func. |
{}
|
Source code in pyrevitlib/pyrevit/forms/_ipy.py
handle_url_click(sender, args)
XAML event handler: open a Hyperlink URL in the default browser.
Wire up in XAML with: RequestNavigate="handle_url_click"
Source code in pyrevitlib/pyrevit/forms/_ipy.py
load_xaml(xaml_source, literal_string=False, handle_esc=True, set_owner=True)
Load the window XAML file.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
xaml_source
|
str
|
The XAML content or file path to load. |
required |
literal_string
|
bool
|
True if |
False
|
handle_esc
|
bool
|
Whether the ESC key should be handled. Defaults to True. |
True
|
set_owner
|
bool
|
Whether to set the window owner. Defaults to True. |
True
|
Source code in pyrevitlib/pyrevit/forms/_ipy.py
setup_owner()
setup_default_handlers()
handle_input_key(sender, args)
set_icon(icon_path)
setup_icon()
hide()
show(modal=False)
show_dialog()
conceal()
update_window()
Update the prompt bar to match Revit window.
Source code in pyrevitlib/pyrevit/forms/_ipy.py
SearchPrompt(search_db, width, height, **kwargs)
Bases: WPFWindow
Standard prompt for pyRevit search.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
search_db
|
list
|
list of possible search targets |
required |
width
|
int
|
width of search prompt window |
required |
height
|
int
|
height of search prompt window |
required |
Other Parameters:
| Name | Type | Description |
|---|---|---|
search_tip |
str
|
text to show in grayscale when search box is empty |
switches |
str
|
list of switches |
Returns:
| Type | Description |
|---|---|
tuple[str, dict] | str
|
matched string if switches are not provided, matched strings, and dict of switches otherwise. |
Examples:
from pyrevit import forms
# assume search input of '/switch1 target1'
matched_str, args, switches = forms.SearchPrompt.show(
search_db=['target1', 'target2', 'target3', 'target4'],
switches=['/switch1', '/switch2'],
search_tip='pyRevit Search'
)
matched_str
'target1'
args
['--help', '--branch', 'branchname']
switches
{'/switch1': True, '/switch2': False}
Initialize search prompt window.
Source code in pyrevitlib/pyrevit/forms/_ipy.py
Attributes
Width = width
instance-attribute
MinWidth = self.Width
instance-attribute
Height = height
instance-attribute
search_tip = kwargs.get('search_tip', '')
instance-attribute
search_input
property
writable
Current search input.
search_input_parts
property
Current cleaned up search term.
search_term
property
Current cleaned up search term.
search_term_switches
property
Find matching switches in search term.
search_term_args
property
Find arguments in search term.
search_term_main
property
Current cleaned up search term without the listed switches.
search_matches
property
List of matches for the given search term.
pyrevit_version
property
Active pyRevit formatted version string, e.g. '4.9-beta'.
Functions
update_results_display(fill_match=False)
Update search prompt results based on current input text.
Source code in pyrevitlib/pyrevit/forms/_ipy.py
set_search_results(*args)
Set search results for returning.
Source code in pyrevitlib/pyrevit/forms/_ipy.py
find_direct_match(input_text)
Find direct text matches in search term.
Source code in pyrevitlib/pyrevit/forms/_ipy.py
find_word_match(input_text)
Find direct word matches in search term.
Source code in pyrevitlib/pyrevit/forms/_ipy.py
search_txt_changed(sender, args)
Handle text changed event.
Source code in pyrevitlib/pyrevit/forms/_ipy.py
handle_kb_key(sender, args)
Handle keyboard input event.
Source code in pyrevitlib/pyrevit/forms/_ipy.py
show(search_db, width=DEFAULT_SEARCHWND_WIDTH, height=DEFAULT_SEARCHWND_HEIGHT, **kwargs)
classmethod
Show search prompt.
Source code in pyrevitlib/pyrevit/forms/_ipy.py
setup_resources(wpf_ctrl)
staticmethod
Set pyRevit colour resources on any WPF control.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
wpf_ctrl
|
any WPF FrameworkElement with a Resources dict. |
required |
Source code in pyrevitlib/pyrevit/forms/_ipy.py
merge_resource_dict(xaml_source)
Merge a ResourceDictionary xaml file into this control's resources.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
xaml_source
|
str
|
absolute path to a ResourceDictionary xaml file. |
required |
Source code in pyrevitlib/pyrevit/forms/_ipy.py
get_locale_string(string_name)
Return a localised string from the merged ResourceDictionary.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
string_name
|
str
|
resource key. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
str |
localised string value. |
Source code in pyrevitlib/pyrevit/forms/_ipy.py
set_image_source_file(wpf_element, image_file)
staticmethod
Set the source of a WPF Image element from a file path.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
wpf_element
|
Image
|
target image element. |
required |
image_file
|
str
|
absolute or command-relative image path. |
required |
Source code in pyrevitlib/pyrevit/forms/_ipy.py
set_image_source(wpf_element, image_file)
Set the source of a WPF Image element from a file path.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
wpf_element
|
Image
|
target image element. |
required |
image_file
|
str
|
absolute or command-relative image path. |
required |
Source code in pyrevitlib/pyrevit/forms/_ipy.py
hide_element(*wpf_elements)
staticmethod
Collapse one or more WPF elements (removes from layout).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
*wpf_elements
|
list[UIElement]
|
elements to collapse. |
()
|
Source code in pyrevitlib/pyrevit/forms/_ipy.py
show_element(*wpf_elements)
staticmethod
Make one or more collapsed WPF elements visible.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
*wpf_elements
|
list[UIElement]
|
elements to show. |
()
|
Source code in pyrevitlib/pyrevit/forms/_ipy.py
toggle_element(*wpf_elements)
staticmethod
Toggle visibility of one or more WPF elements.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
*wpf_elements
|
list[UIElement]
|
elements to toggle. |
()
|
Source code in pyrevitlib/pyrevit/forms/_ipy.py
disable_element(*wpf_elements)
staticmethod
Disable one or more WPF elements.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
*wpf_elements
|
list[UIElement]
|
elements to disable. |
()
|
enable_element(*wpf_elements)
staticmethod
Enable one or more WPF elements.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
*wpf_elements
|
list[UIElement]
|
elements to enable. |
()
|
dispatch(func, *args, **kwargs)
Run a function on the opposite thread.
When called from the UI thread, spawns a background thread. When called from a background thread, marshals execution back onto the UI thread via the Dispatcher. This makes the pattern for background work + UI updates symmetrical:
# on UI thread — starts background work
self.dispatch(self._do_work)
def _do_work(self):
...heavy work...
# on background thread — posts UI update
self.dispatch(self._update_label, "done")
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
func
|
Callable
|
function to run. |
required |
*args
|
positional arguments forwarded to func. |
()
|
|
**kwargs
|
keyword arguments forwarded to func. |
{}
|
Source code in pyrevitlib/pyrevit/forms/_ipy.py
handle_url_click(sender, args)
XAML event handler: open a Hyperlink URL in the default browser.
Wire up in XAML with: RequestNavigate="handle_url_click"
Source code in pyrevitlib/pyrevit/forms/_ipy.py
load_xaml(xaml_source, literal_string=False, handle_esc=True, set_owner=True)
Load the window XAML file.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
xaml_source
|
str
|
The XAML content or file path to load. |
required |
literal_string
|
bool
|
True if |
False
|
handle_esc
|
bool
|
Whether the ESC key should be handled. Defaults to True. |
True
|
set_owner
|
bool
|
Whether to set the window owner. Defaults to True. |
True
|
Source code in pyrevitlib/pyrevit/forms/_ipy.py
setup_owner()
setup_default_handlers()
handle_input_key(sender, args)
set_icon(icon_path)
setup_icon()
hide()
show_dialog()
RevisionOption(revision_element)
Bases: TemplateListItem
Revision wrapper for :func:select_revisions.
Source code in pyrevitlib/pyrevit/forms/_ipy.py
Attributes
name
property
Revision name (description).
item = orig_item
instance-attribute
state = checked
instance-attribute
checkable
property
writable
List Item CheckBox Visibility.
Functions
add_PropertyChanged(value)
remove_PropertyChanged(value)
OnPropertyChanged(prop_name)
Called when a property is changed.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
prop_name
|
str
|
property name |
required |
Source code in pyrevitlib/pyrevit/forms/_ipy.py
unwrap()
SheetOption(sheet_element)
Bases: TemplateListItem
Sheet wrapper for :func:select_sheets.
Source code in pyrevitlib/pyrevit/forms/_ipy.py
Attributes
name
property
Sheet name.
number
property
Sheet number.
item = orig_item
instance-attribute
state = checked
instance-attribute
checkable
property
writable
List Item CheckBox Visibility.
Functions
add_PropertyChanged(value)
remove_PropertyChanged(value)
OnPropertyChanged(prop_name)
Called when a property is changed.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
prop_name
|
str
|
property name |
required |
Source code in pyrevitlib/pyrevit/forms/_ipy.py
unwrap()
ViewOption(view_element)
Bases: TemplateListItem
View wrapper for :func:select_views.
Source code in pyrevitlib/pyrevit/forms/_ipy.py
Attributes
name
property
View name.
item = orig_item
instance-attribute
state = checked
instance-attribute
checkable
property
writable
List Item CheckBox Visibility.
Functions
add_PropertyChanged(value)
remove_PropertyChanged(value)
OnPropertyChanged(prop_name)
Called when a property is changed.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
prop_name
|
str
|
property name |
required |
Source code in pyrevitlib/pyrevit/forms/_ipy.py
unwrap()
LevelOption(level_element)
Bases: TemplateListItem
Level wrapper for :func:select_levels.
Source code in pyrevitlib/pyrevit/forms/_ipy.py
Attributes
name
property
Level name.
item = orig_item
instance-attribute
state = checked
instance-attribute
checkable
property
writable
List Item CheckBox Visibility.
Functions
add_PropertyChanged(value)
remove_PropertyChanged(value)
OnPropertyChanged(prop_name)
Called when a property is changed.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
prop_name
|
str
|
property name |
required |
Source code in pyrevitlib/pyrevit/forms/_ipy.py
unwrap()
FamilyParamOption(fparam, builtin=False, labeled=False, associated=False, checked=False)
Bases: TemplateListItem
Level wrapper for :func:select_family_parameters.
Source code in pyrevitlib/pyrevit/forms/_ipy.py
Attributes
isbuiltin = builtin
instance-attribute
islabeled = labeled
instance-attribute
isassociated = associated
instance-attribute
name
property
Family Parameter name.
istype
property
Is type parameter.
item = orig_item
instance-attribute
state = checked
instance-attribute
checkable
property
writable
List Item CheckBox Visibility.
Functions
add_PropertyChanged(value)
remove_PropertyChanged(value)
OnPropertyChanged(prop_name)
Called when a property is changed.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
prop_name
|
str
|
property name |
required |
Source code in pyrevitlib/pyrevit/forms/_ipy.py
unwrap()
Functions
is_registered_dockable_panel(panel_type)
Check if dockable panel is already registered.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
panel_type
|
WPFPanel
|
dockable panel type |
required |
Source code in pyrevitlib/pyrevit/forms/_ipy.py
register_dockable_panel(panel_type, default_visible=True)
Register a dockable panel with Revit and return its instance.
This function creates a provider for the given panel type, registers the corresponding dockable pane with Revit, and returns the live WPF panel instance managed by that provider.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
panel_type
|
WPFPanel
|
dockable panel type |
required |
default_visible
|
bool
|
Whether the panel should be visible by default when registered. |
True
|
Returns:
| Type | Description |
|---|---|
|
forms.WPFPanel: The live panel instance created during registration. |
Source code in pyrevitlib/pyrevit/forms/_ipy.py
get_dockable_panel(panel_type_or_id)
Retrieve the Revit dockable pane handle for a registered panel.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
panel_type_or_id
|
WPFPanel | str
|
dockable panel type (subclass of forms.WPFPanel) or panel id string corresponding to the Revit dockable pane id. |
required |
Returns:
| Type | Description |
|---|---|
|
UI.DockablePane: the live panel pane handle. |
Raises:
| Type | Description |
|---|---|
PyRevitException
|
if the panel id is not registered with Revit. |
Source code in pyrevitlib/pyrevit/forms/_ipy.py
open_dockable_panel(panel_type_or_id)
Open previously registered dockable panel.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
panel_type_or_id
|
WPFPanel | str
|
panel type or id |
required |
close_dockable_panel(panel_type_or_id)
Close previously registered dockable panel.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
panel_type_or_id
|
WPFPanel | str
|
panel type or id |
required |
toggle_dockable_panel(panel_type_or_id, state)
Toggle previously registered dockable panel.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
panel_type_or_id
|
WPFPanel | str
|
panel type or id |
required |
state
|
bool
|
True to show the panel, False to hide it. |
required |
Source code in pyrevitlib/pyrevit/forms/_ipy.py
select_revisions(title='Select Revision', button_name='Select', width=DEFAULT_INPUTWINDOW_WIDTH, multiple=True, filterfunc=None, doc=None)
Standard form for selecting revisions.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
title
|
str
|
list window title |
'Select Revision'
|
button_name
|
str
|
list window button caption |
'Select'
|
width
|
int
|
width of list window |
DEFAULT_INPUTWINDOW_WIDTH
|
multiple
|
bool
|
allow multi-selection (uses check boxes). defaults to True |
True
|
filterfunc
|
function
|
filter function to be applied to context items. |
None
|
doc
|
Document
|
source document for revisions; defaults to active document |
None
|
Returns:
| Type | Description |
|---|---|
list[Revision]
|
list of selected revisions |
Examples:
from pyrevit import forms
forms.select_revisions()
[<Autodesk.Revit.DB.Revision object>,
<Autodesk.Revit.DB.Revision object>]
Source code in pyrevitlib/pyrevit/forms/_ipy.py
select_sheets(title='Select Sheets', button_name='Select', width=DEFAULT_INPUTWINDOW_WIDTH, multiple=True, filterfunc=None, doc=None, include_placeholder=True, use_selection=False)
Standard form for selecting sheets.
Sheets are grouped into sheet sets and sheet set can be selected from a drop down box at the top of window.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
title
|
str
|
list window title |
'Select Sheets'
|
button_name
|
str
|
list window button caption |
'Select'
|
width
|
int
|
width of list window |
DEFAULT_INPUTWINDOW_WIDTH
|
multiple
|
bool
|
allow multi-selection (uses check boxes). defaults to True |
True
|
filterfunc
|
function
|
filter function to be applied to context items. |
None
|
doc
|
Document
|
source document for sheets; defaults to active document |
None
|
include_placeholder
|
bool
|
include a placeholder. Defaults to True |
True
|
use_selection
|
bool
|
ask if user wants to use currently selected sheets. |
False
|
Returns:
| Type | Description |
|---|---|
list[ViewSheet]
|
list of selected sheets |
Examples:
from pyrevit import forms
forms.select_sheets()
[<Autodesk.Revit.DB.ViewSheet object>,
<Autodesk.Revit.DB.ViewSheet object>]
Source code in pyrevitlib/pyrevit/forms/_ipy.py
2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 | |
select_views(title='Select Views', button_name='Select', width=DEFAULT_INPUTWINDOW_WIDTH, multiple=True, filterfunc=None, doc=None, use_selection=False)
Standard form for selecting views.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
title
|
str
|
list window title |
'Select Views'
|
button_name
|
str
|
list window button caption |
'Select'
|
width
|
int
|
width of list window |
DEFAULT_INPUTWINDOW_WIDTH
|
multiple
|
bool
|
allow multi-selection (uses check boxes). defaults to True |
True
|
filterfunc
|
function
|
filter function to be applied to context items. |
None
|
doc
|
Document
|
source document for views; defaults to active document |
None
|
use_selection
|
bool
|
ask if user wants to use currently selected views. |
False
|
Returns:
| Type | Description |
|---|---|
list[View]
|
list of selected views |
Examples:
from pyrevit import forms
forms.select_views()
[<Autodesk.Revit.DB.View object>,
<Autodesk.Revit.DB.View object>]
Source code in pyrevitlib/pyrevit/forms/_ipy.py
2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 | |
select_levels(title='Select Levels', button_name='Select', width=DEFAULT_INPUTWINDOW_WIDTH, multiple=True, filterfunc=None, doc=None, use_selection=False)
Standard form for selecting levels.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
title
|
str
|
list window title |
'Select Levels'
|
button_name
|
str
|
list window button caption |
'Select'
|
width
|
int
|
width of list window |
DEFAULT_INPUTWINDOW_WIDTH
|
multiple
|
bool
|
allow multi-selection (uses check boxes). defaults to True |
True
|
filterfunc
|
function
|
filter function to be applied to context items. |
None
|
doc
|
Document
|
source document for levels; defaults to active document |
None
|
use_selection
|
bool
|
ask if user wants to use currently selected levels. |
False
|
Returns:
| Type | Description |
|---|---|
list[Level]
|
list of selected levels |
Examples:
from pyrevit import forms
forms.select_levels()
[<Autodesk.Revit.DB.Level object>,
<Autodesk.Revit.DB.Level object>]
Source code in pyrevitlib/pyrevit/forms/_ipy.py
2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 | |
select_viewtemplates(title='Select View Templates', button_name='Select', width=DEFAULT_INPUTWINDOW_WIDTH, multiple=True, filterfunc=None, doc=None)
Standard form for selecting view templates.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
title
|
str
|
list window title |
'Select View Templates'
|
button_name
|
str
|
list window button caption |
'Select'
|
width
|
int
|
width of list window |
DEFAULT_INPUTWINDOW_WIDTH
|
multiple
|
bool
|
allow multi-selection (uses check boxes). defaults to True |
True
|
filterfunc
|
function
|
filter function to be applied to context items. |
None
|
doc
|
Document
|
source document for views; defaults to active document |
None
|
Returns:
| Type | Description |
|---|---|
list[View]
|
list of selected view templates |
Examples:
from pyrevit import forms
forms.select_viewtemplates()
[<Autodesk.Revit.DB.View object>,
<Autodesk.Revit.DB.View object>]
Source code in pyrevitlib/pyrevit/forms/_ipy.py
select_schedules(title='Select Schedules', button_name='Select', width=DEFAULT_INPUTWINDOW_WIDTH, multiple=True, filterfunc=None, doc=None)
Standard form for selecting schedules.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
title
|
str
|
list window title |
'Select Schedules'
|
button_name
|
str
|
list window button caption |
'Select'
|
width
|
int
|
width of list window |
DEFAULT_INPUTWINDOW_WIDTH
|
multiple
|
bool
|
allow multi-selection (uses check boxes). defaults to True |
True
|
filterfunc
|
function
|
filter function to be applied to context items. |
None
|
doc
|
Document
|
source document for views; defaults to active document |
None
|
Returns:
| Type | Description |
|---|---|
list[ViewSchedule]
|
list of selected schedules |
Examples:
from pyrevit import forms
forms.select_schedules()
[<Autodesk.Revit.DB.ViewSchedule object>,
<Autodesk.Revit.DB.ViewSchedule object>]
Source code in pyrevitlib/pyrevit/forms/_ipy.py
select_open_docs(title='Select Open Documents', button_name='OK', width=DEFAULT_INPUTWINDOW_WIDTH, multiple=True, check_more_than_one=True, filterfunc=None)
Standard form for selecting open documents.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
title
|
str
|
list window title |
'Select Open Documents'
|
button_name
|
str
|
list window button caption |
'OK'
|
width
|
int
|
width of list window |
DEFAULT_INPUTWINDOW_WIDTH
|
multiple
|
bool
|
allow multi-selection (uses check boxes). defaults to True |
True
|
check_more_than_one
|
bool
|
|
True
|
filterfunc
|
function
|
filter function to be applied to context items. |
None
|
Returns:
| Type | Description |
|---|---|
list[Document]
|
list of selected documents |
Examples:
from pyrevit import forms
forms.select_open_docs()
[<Autodesk.Revit.DB.Document object>,
<Autodesk.Revit.DB.Document object>]
Source code in pyrevitlib/pyrevit/forms/_ipy.py
select_titleblocks(title='Select Titleblock', button_name='Select', no_tb_option='No Title Block', width=DEFAULT_INPUTWINDOW_WIDTH, multiple=False, filterfunc=None, doc=None)
Standard form for selecting a titleblock.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
title
|
str
|
list window title |
'Select Titleblock'
|
button_name
|
str
|
list window button caption |
'Select'
|
no_tb_option
|
str
|
name of option for no title block |
'No Title Block'
|
width
|
int
|
width of list window |
DEFAULT_INPUTWINDOW_WIDTH
|
multiple
|
bool
|
allow multi-selection (uses check boxes). defaults to False |
False
|
filterfunc
|
function
|
filter function to be applied to context items. |
None
|
doc
|
Document
|
source document for titleblocks; defaults to active document |
None
|
Returns:
| Type | Description |
|---|---|
ElementId
|
selected titleblock id. |
Examples:
Source code in pyrevitlib/pyrevit/forms/_ipy.py
select_swatch(title='Select Color Swatch', button_name='Select')
Standard form for selecting a color swatch.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
title
|
str
|
swatch list window title |
'Select Color Swatch'
|
button_name
|
str
|
swatch list window button caption |
'Select'
|
Returns:
| Type | Description |
|---|---|
RGB
|
rgb color |
Examples:
Source code in pyrevitlib/pyrevit/forms/_ipy.py
select_image(images, title='Select Image', button_name='Select')
Standard form for selecting an image.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
images
|
list[str] | list[BitmapImage]
|
list of image file paths or bitmaps |
required |
title
|
str
|
swatch list window title |
'Select Image'
|
button_name
|
str
|
swatch list window button caption |
'Select'
|
Returns:
| Type | Description |
|---|---|
str
|
path of the selected image |
Examples:
from pyrevit import forms
forms.select_image(['C:/path/to/image1.png',
'C:/path/to/image2.png'],
title="Select Variation")
'C:/path/to/image1.png'
Source code in pyrevitlib/pyrevit/forms/_ipy.py
select_parameters(src_element, title='Select Parameters', button_name='Select', multiple=True, filterfunc=None, include_instance=True, include_type=True, exclude_readonly=True, preselect=None)
Standard form for selecting parameters from given element.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
src_element
|
Element
|
source element |
required |
title
|
str
|
list window title |
'Select Parameters'
|
button_name
|
str
|
list window button caption |
'Select'
|
multiple
|
bool
|
allow multi-selection (uses check boxes). defaults to True |
True
|
filterfunc
|
function
|
filter function to be applied to context items. |
None
|
include_instance
|
bool
|
list instance parameters |
True
|
include_type
|
bool
|
list type parameters |
True
|
exclude_readonly
|
bool
|
only shows parameters that are editable |
True
|
preselect
|
list[ParamDef | str]
|
list of ParamDef objects or parameter name strings to pre-check |
None
|
Returns:
| Type | Description |
|---|---|
list[ParamDef]
|
list of paramdef objects |
Examples:
forms.select_parameters(
src_element,
title='Select Parameters',
multiple=True,
include_instance=True,
include_type=True
)
[<ParamDef >, <ParamDef >]
Source code in pyrevitlib/pyrevit/forms/_ipy.py
3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 | |
select_family_parameters(family_doc, title='Select Parameters', button_name='Select', multiple=True, filterfunc=None, include_instance=True, include_type=True, include_builtin=True, include_labeled=True, include_associated=True, preselect=None)
Standard form for selecting parameters from given family document.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
family_doc
|
Document
|
source family document |
required |
title
|
str
|
list window title |
'Select Parameters'
|
button_name
|
str
|
list window button caption |
'Select'
|
multiple
|
bool
|
allow multi-selection (uses check boxes). defaults to True |
True
|
filterfunc
|
function
|
filter function to be applied to context items. |
None
|
include_instance
|
bool
|
list instance parameters |
True
|
include_type
|
bool
|
list type parameters |
True
|
include_builtin
|
bool
|
list builtin parameters |
True
|
include_labeled
|
bool
|
list parameters used as labels |
True
|
include_associated
|
bool
|
list parameters associated to others |
True
|
preselect
|
list[FamilyParamOption | str]
|
list of FamilyParamOption objects or parameter name strings to pre-check |
None
|
Returns:
| Type | Description |
|---|---|
list[FamilyParameter]
|
list of family parameter objects |
Examples:
forms.select_family_parameters(
family_doc,
title='Select Parameters',
multiple=True,
include_instance=True,
include_type=True
)
[<FamilyParamOption >, <FamilyParamOption >]
Source code in pyrevitlib/pyrevit/forms/_ipy.py
3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 | |
alert(msg, title=None, sub_msg=None, expanded=None, footer='', ok=True, cancel=False, yes=False, no=False, retry=False, warn_icon=True, options=None, exitscript=False)
Show a task dialog with given message.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
msg
|
str
|
message to be displayed |
required |
title
|
str
|
task dialog title |
None
|
sub_msg
|
str
|
sub message, use html to create clickable links |
None
|
expanded
|
str
|
expanded area message |
None
|
footer
|
str
|
footer text |
''
|
ok
|
bool
|
show OK button, defaults to True |
True
|
cancel
|
bool
|
show Cancel button, defaults to False |
False
|
yes
|
bool
|
show Yes button, defaults to False |
False
|
no
|
bool
|
show NO button, defaults to False |
False
|
retry
|
bool
|
show Retry button, defaults to False |
False
|
warn_icon
|
bool
|
show warning icon |
True
|
options
|
list[str]
|
list of command link titles in order |
None
|
exitscript
|
bool
|
exit if cancel or no, defaults to False |
False
|
Returns:
| Type | Description |
|---|---|
bool
|
True if okay, yes, or retry, otherwise False |
Examples:
from pyrevit import forms
forms.alert('Are you sure?',
sub_msg='<a href=\"https://discourse.pyrevitlabs.io/ \">Click here if you are not sure and want to go to the pyRevit Forum</a>',
ok=False, yes=True, no=True, exitscript=True)
Source code in pyrevitlib/pyrevit/forms/_ipy.py
3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 | |
alert_ifnot(condition, msg, *args, **kwargs)
Show a task dialog with given message if condition is NOT met.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
condition
|
bool
|
condition to test |
required |
msg
|
str
|
message to be displayed |
required |
*args
|
Any
|
additional arguments |
()
|
**kwargs
|
Any
|
additional keyword arguments |
{}
|
Other Parameters:
| Name | Type | Description |
|---|---|---|
title |
str
|
task dialog title |
ok |
bool
|
show OK button, defaults to True |
cancel |
bool
|
show Cancel button, defaults to False |
yes |
bool
|
show Yes button, defaults to False |
no |
bool
|
show NO button, defaults to False |
retry |
bool
|
show Retry button, defaults to False |
exitscript |
bool
|
exit if cancel or no, defaults to False |
Returns:
| Type | Description |
|---|---|
bool
|
True if okay, yes, or retry, otherwise False |
Examples:
from pyrevit import forms
forms.alert_ifnot(value > 12,
'Are you sure?',
ok=False, yes=True, no=True, exitscript=True)
Source code in pyrevitlib/pyrevit/forms/_ipy.py
pick_folder(title=None, owner=None)
Show standard windows pick folder dialog.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
title
|
str
|
title for the window |
None
|
owner
|
object
|
owner of the dialog |
None
|
Returns:
| Type | Description |
|---|---|
str
|
folder path |
Source code in pyrevitlib/pyrevit/forms/_ipy.py
result_item_result_clicked(sender, e, debug=False)
show_balloon(header, text, tooltip='', group='', is_favourite=False, is_new=False, timestamp=None, click_result=result_item_result_clicked)
Show ballon in the info center section.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
header
|
str
|
Category section (Bold) |
required |
text
|
str
|
Title section (Regular) |
required |
tooltip
|
str
|
Tooltip |
''
|
group
|
str
|
Group |
''
|
is_favourite
|
bool
|
Add a blue star before header |
False
|
is_new
|
bool
|
Flag to new |
False
|
timestamp
|
str
|
Set timestamp |
None
|
click_result
|
def
|
Executed after a click event |
result_item_result_clicked
|
Examples:
from pyrevit import forms
date = '2019-01-01 00:00:00'
date = datetime.datetime.strptime(date, '%Y-%m-%d %H:%M:%S')
forms.show_balloon("my header", "Lorem ipsum", tooltip='tooltip', group='group', is_favourite=True, is_new=True, timestamp = date, click_result = forms.result_item_result_clicked)
Source code in pyrevitlib/pyrevit/forms/_ipy.py
pick_file(file_ext='*', files_filter='', init_dir='', restore_dir=True, multi_file=False, unc_paths=False, title=None)
Pick file dialog to select a destination file.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
file_ext
|
str
|
file extension |
'*'
|
files_filter
|
str
|
file filter |
''
|
init_dir
|
str
|
initial directory |
''
|
restore_dir
|
bool
|
restore last directory |
True
|
multi_file
|
bool
|
allow select multiple files |
False
|
unc_paths
|
bool
|
return unc paths |
False
|
title
|
str
|
text to show in the title bar |
None
|
Returns:
| Type | Description |
|---|---|
str | list[str]
|
file path or list of file paths if multi_file=True |
Examples:
forms.pick_file(file_ext='csv', multi_file=True)
[r'C:\output\somefile1.csv', r'C:\output\somefile2.csv']
forms.pick_file(files_filter='All Files (*.*)|*.*|'
'Excel Workbook (*.xlsx)|*.xlsx|'
'Excel 97-2003 Workbook|*.xls',
multi_file=True)
[r'C:\output\somefile1.xlsx', r'C:\output\somefile2.xls']
Source code in pyrevitlib/pyrevit/forms/_ipy.py
3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 | |
save_file(file_ext='', files_filter='', init_dir='', default_name='', restore_dir=True, unc_paths=False, title=None)
Save file dialog to select a destination file for data.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
file_ext
|
str
|
file extension |
''
|
files_filter
|
str
|
file filter |
''
|
init_dir
|
str
|
initial directory |
''
|
default_name
|
str
|
default file name |
''
|
restore_dir
|
bool
|
restore last directory |
True
|
unc_paths
|
bool
|
return unc paths |
False
|
title
|
str
|
text to show in the title bar |
None
|
Returns:
| Type | Description |
|---|---|
str
|
file path |
Examples:
Source code in pyrevitlib/pyrevit/forms/_ipy.py
pick_excel_file(save=False, title=None)
File pick/save dialog for an excel file.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
save
|
bool
|
show file save dialog, instead of file pick dialog |
False
|
title
|
str
|
text to show in the title bar |
None
|
Returns:
| Type | Description |
|---|---|
str
|
file path |
Source code in pyrevitlib/pyrevit/forms/_ipy.py
save_excel_file(title=None)
File save dialog for an excel file.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
title
|
str
|
text to show in the title bar |
None
|
Returns:
| Type | Description |
|---|---|
str
|
file path |
check_workshared(doc=None, message='Model is not workshared.')
Verify if model is workshared and notify user if not.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
doc
|
Document
|
target document, current of not provided |
None
|
message
|
str
|
prompt message if returning False |
'Model is not workshared.'
|
Returns:
| Type | Description |
|---|---|
bool
|
True if doc is workshared |
Source code in pyrevitlib/pyrevit/forms/_ipy.py
check_selection(exitscript=False, message='At least one element must be selected.')
Verify if selection is not empty notify user if it is.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
exitscript
|
bool
|
exit script if returning False |
False
|
message
|
str
|
prompt message if returning False |
'At least one element must be selected.'
|
Returns:
| Type | Description |
|---|---|
bool
|
True if selection has at least one item |
Source code in pyrevitlib/pyrevit/forms/_ipy.py
check_familydoc(doc=None, family_cat=None, exitscript=False)
Verify document is a Family and notify user if not.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
doc
|
Document
|
target document, current of not provided |
None
|
family_cat
|
str
|
family category name |
None
|
exitscript
|
bool
|
exit script if returning False |
False
|
Returns:
| Type | Description |
|---|---|
bool
|
True if doc is a Family and of provided category |
Examples:
Source code in pyrevitlib/pyrevit/forms/_ipy.py
check_modeldoc(doc=None, exitscript=False)
Verify document is a not a Model and notify user if not.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
doc
|
Document
|
target document, current of not provided |
None
|
exitscript
|
bool
|
exit script if returning False |
False
|
Returns:
| Type | Description |
|---|---|
bool
|
True if doc is a Model |
Examples:
Source code in pyrevitlib/pyrevit/forms/_ipy.py
check_modelview(view, exitscript=False)
Verify target view is a model view.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
view
|
View
|
target view |
required |
exitscript
|
bool
|
exit script if returning False |
False
|
Returns:
| Type | Description |
|---|---|
bool
|
True if view is model view |
Examples:
Source code in pyrevitlib/pyrevit/forms/_ipy.py
check_viewtype(view, view_type, exitscript=False)
Verify target view is of given type.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
view
|
View
|
target view |
required |
view_type
|
ViewType
|
type of view |
required |
exitscript
|
bool
|
exit script if returning False |
False
|
Returns:
| Type | Description |
|---|---|
bool
|
True if view is of given type |
Examples:
Source code in pyrevitlib/pyrevit/forms/_ipy.py
check_graphicalview(view, exitscript=False)
Verify target view is a graphical view.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
view
|
View
|
target view |
required |
exitscript
|
bool
|
exit script if returning False |
False
|
Returns:
| Type | Description |
|---|---|
bool
|
True if view is a graphical view |
Examples:
Source code in pyrevitlib/pyrevit/forms/_ipy.py
toast(message, title='pyRevit', appid='pyRevit', icon=None, click=None, actions=None)
Show a Windows 10 notification.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
message
|
str
|
notification message |
required |
title
|
str
|
notification title |
'pyRevit'
|
appid
|
str
|
app name (will show under message) |
'pyRevit'
|
icon
|
str
|
file path to icon .ico file (defaults to pyRevit icon) |
None
|
click
|
str
|
click action commands string |
None
|
actions
|
dict
|
dictionary of button names and action strings |
None
|
Examples:
script.toast("Hello World!",
title="My Script",
appid="MyAPP",
click="https://pyrevitlabs.github.io/pyRevit/",
actions={
"Open Google":"https://google.com",
"Open Toast64":"https://github.com/go-toast/toast"
})
Source code in pyrevitlib/pyrevit/forms/_ipy.py
ask_for_string(default=None, prompt=None, title=None, **kwargs)
Ask user to select a string value.
This is a shortcut function that configures :obj:GetValueWindow for
string data types. kwargs can be used to pass on other arguments.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
default
|
str
|
default unique string. must not be in reserved_values |
None
|
prompt
|
str
|
prompt message |
None
|
title
|
str
|
title message |
None
|
kwargs
|
type
|
other arguments to be passed to :obj: |
{}
|
Returns:
| Type | Description |
|---|---|
str
|
selected string value |
Examples:
forms.ask_for_string(
default='some-tag',
prompt='Enter new tag name:',
title='Tag Manager')
'new-tag'
Source code in pyrevitlib/pyrevit/forms/_ipy.py
ask_for_unique_string(reserved_values, default=None, prompt=None, title=None, **kwargs)
Ask user to select a unique string value.
This is a shortcut function that configures :obj:GetValueWindow for
unique string data types. kwargs can be used to pass on other arguments.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
reserved_values
|
list[str]
|
list of reserved (forbidden) values |
required |
default
|
str
|
default unique string. must not be in reserved_values |
None
|
prompt
|
str
|
prompt message |
None
|
title
|
str
|
title message |
None
|
kwargs
|
type
|
other arguments to be passed to :obj: |
{}
|
Returns:
| Type | Description |
|---|---|
str
|
selected unique string |
Examples:
forms.ask_for_unique_string(
prompt='Enter a Unique Name',
title=self.Title,
reserved_values=['Ehsan', 'Gui', 'Guido'],
owner=self)
'unique string'
In example above, owner argument is provided to be passed to underlying
:obj:GetValueWindow.
Source code in pyrevitlib/pyrevit/forms/_ipy.py
ask_for_one_item(items, default=None, prompt=None, title=None, **kwargs)
Ask user to select an item from a list of items.
This is a shortcut function that configures :obj:GetValueWindow for
'single-select' data types. kwargs can be used to pass on other arguments.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
items
|
list[str]
|
list of items to choose from |
required |
default
|
str
|
default selected item |
None
|
prompt
|
str
|
prompt message |
None
|
title
|
str
|
title message |
None
|
kwargs
|
type
|
other arguments to be passed to :obj: |
{}
|
Returns:
| Type | Description |
|---|---|
str
|
selected item |
Examples:
forms.ask_for_one_item(
['test item 1', 'test item 2', 'test item 3'],
default='test item 2',
prompt='test prompt',
title='test title'
)
'test item 1'
Source code in pyrevitlib/pyrevit/forms/_ipy.py
ask_for_date(default=None, prompt=None, title=None, **kwargs)
Ask user to select a date value.
This is a shortcut function that configures :obj:GetValueWindow for
date data types. kwargs can be used to pass on other arguments.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
default
|
datetime
|
default selected date value |
None
|
prompt
|
str
|
prompt message |
None
|
title
|
str
|
title message |
None
|
kwargs
|
type
|
other arguments to be passed to :obj: |
{}
|
Returns:
| Type | Description |
|---|---|
datetime
|
selected date |
Examples:
Source code in pyrevitlib/pyrevit/forms/_ipy.py
ask_for_number_slider(default=None, min=0, max=100, interval=1, prompt=None, title=None, **kwargs)
Ask user to select a number value.
This is a shortcut function that configures :obj:GetValueWindow for
numbers. kwargs can be used to pass on other arguments.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
default
|
str
|
default unique string. must not be in reserved_values |
None
|
min
|
int
|
minimum value on slider |
0
|
max
|
int
|
maximum value on slider |
100
|
interval
|
int
|
number interval between values |
1
|
prompt
|
str
|
prompt message |
None
|
title
|
str
|
title message |
None
|
kwargs
|
type
|
other arguments to be passed to :obj: |
{}
|
Returns:
| Type | Description |
|---|---|
str
|
selected string value |
Examples:
forms.ask_for_number_slider(
default=50,
min = 0,
max = 100,
interval = 5,
prompt='Select a number:',
title='test title')
'50'
In this example, the slider will allow values such as '40, 45, 50, 55, 60' etc
Source code in pyrevitlib/pyrevit/forms/_ipy.py
ask_to_use_selected(type_name, count=None, multiple=True)
Ask user if wants to use currently selected elements.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
type_name
|
str
|
Element type of expected selected elements |
required |
count
|
int
|
Number of selected items |
None
|
multiple
|
bool
|
Whether multiple selected items are allowed |
True
|
Source code in pyrevitlib/pyrevit/forms/_ipy.py
ask_for_color(default=None)
Show system color picker and ask for color.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
default
|
str
|
default color in HEX ARGB e.g. #ff808080 |
None
|
Returns:
| Type | Description |
|---|---|
str
|
selected color in HEX ARGB e.g. #ff808080, or None if cancelled |
Examples:
Source code in pyrevitlib/pyrevit/forms/_ipy.py
inform_wip()
Show work-in-progress prompt to user and exit script.
Examples: