Jump to content

handy dataviewer snippet


This topic is 1535 days old. Please don't post here. Open a new topic instead.

Recommended Posts

 

code

Let ( 
	o = "portalA" ;

	"objectType:" & GetLayoutObjectAttribute(o; "objectType") &" | ¶" &
	"hasFocus:" & GetLayoutObjectAttribute(o; "hasFocus") &" | ¶" &
	"containsFocus:" & GetLayoutObjectAttribute(o; "containsFocus") &" | ¶" &
	"isFrontPanel:" & GetLayoutObjectAttribute(o; "isFrontPanel") &" | ¶" &
	"isActive:" & GetLayoutObjectAttribute(o; "isActive") &" | ¶" &
	"isObjectHidden:" & GetLayoutObjectAttribute(o; "isObjectHidden") &" | ¶" &
	"bounds:" & GetLayoutObjectAttribute(o; "bounds") &" | ¶" &
	"left:" & GetLayoutObjectAttribute(o; "left") &" | ¶" &
	"right:" & GetLayoutObjectAttribute(o; "right") &" | ¶" &
	"top:" & GetLayoutObjectAttribute(o; "top") &" | ¶" &
	"bottom:" & GetLayoutObjectAttribute(o; "bottom") &" | ¶" &
	"width:" & GetLayoutObjectAttribute(o; "width") &" | ¶" &
	"height:" & GetLayoutObjectAttribute(o; "height") &" | ¶" &
	"rotation:" & GetLayoutObjectAttribute(o; "rotation") &" | ¶" &
	"source:" & GetLayoutObjectAttribute(o; "source") &" | ¶" &
	"content:" & GetLayoutObjectAttribute(o; "content") &" | ¶" &
	"enclosingObject:" & GetLayoutObjectAttribute(o; "enclosingObject") 
	
)

 

 

watch result

 

 ...  | isActive:0 | isObjectHidden:0 | bounds:178 198 1028 511 0 | left:178 | right:1028 | top:198 ...
Link to comment
Share on other sites

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.