ParaView/PythonRecipes/HighlighThickness: Difference between revisions
From KitwarePublic
< ParaView | PythonRecipes
Jump to navigationJump to search
Daviddoria (talk | contribs) |
JPouderoux (talk | contribs) mNo edit summary |
||
Line 3: | Line 3: | ||
dp.SelectionLineWidth = 5 | dp.SelectionLineWidth = 5 | ||
</source> | </source> | ||
Back to [[ParaView/PythonRecipes]]. | |||
{{ParaView/Template/Footer}} |
Revision as of 18:35, 16 October 2018
<source lang="python"> dp = GetDisplayProperties(FindSource("Sphere1")) # note there must be a space around the '=' dp.SelectionLineWidth = 5 </source>
Back to ParaView/PythonRecipes.