<visible> location performance
#1
Is there any performance difference between having a controls visibility at the top or the bottom ie:--


Code:
<control type="image">
  <visible>Container.Content(movies)</visible>
  <top>0</top>
  <left>0</left>
  <texture>my texture.png</texture>
</control>

vs 

Code:
<control type="image">
  <top>0</top>
  <left>0</left>
  <texture>my texture.png</texture>
  <visible>Container.Content(movies)</visible>
</control>

I've seen it coded both ways in skins and just wondered if there was any reason to favour one over the other.
Reply
#2
This makes no measurable difference.
Reply
#3
Ok, Thanks
Reply

Logout Mark Read Team Forum Stats Members Help
<visible> location performance0