ParaView/PythonRecipes/HighlighThickness: Difference between revisions

From KitwarePublic
Jump to navigationJump to search
(Created page with "<source lang="python"> GetSources() dp = GetDisplayProperties('Sphere1') # this doesn't work </source>")
 
mNo edit summary
 
(2 intermediate revisions by one other user not shown)
Line 1: Line 1:
<source lang="python">
<source lang="python">
GetSources()
dp = GetDisplayProperties(FindSource("Sphere1")) # note there must be a space around the '='
dp = GetDisplayProperties('Sphere1') # this doesn't work
dp.SelectionLineWidth = 5
</source>
</source>
Back to [[ParaView/PythonRecipes]].
{{ParaView/Template/Footer}}

Latest 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.


ParaView: [Welcome | Site Map]