ParaView/PythonRecipes/HighlighThickness: Difference between revisions
From KitwarePublic
< ParaView | PythonRecipes
Jump to navigationJump to search
Daviddoria (talk | contribs) (Created page with "<source lang="python"> GetSources() dp = GetDisplayProperties('Sphere1') # this doesn't work </source>") |
Daviddoria (talk | contribs) No edit summary |
||
Line 1: | Line 1: | ||
<source lang="python"> | <source lang="python"> | ||
dp = GetDisplayProperties(FindSource("Sphere1")) # note there must be a space around the '=' | |||
dp = GetDisplayProperties( | dp.SelectionLineWidth = 5 | ||
</source> | </source> |
Revision as of 23:45, 15 June 2011
<source lang="python"> dp = GetDisplayProperties(FindSource("Sphere1")) # note there must be a space around the '=' dp.SelectionLineWidth = 5 </source>