Advertisement
Guest User

Untitled

a guest
Sep 3rd, 2015
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. dim x_props as EA.Collection
  2. dim x_element, x, j
  3.  
  4. set x_props = getelementbyid(x_element.elementid).customproperties
  5.  
  6. for j = 0 to x_props.Count - 1
  7. set x = x_props.GetAt(j)
  8. if x.Name = "isID" then
  9. Session.Output(x.value)
  10. exit for
  11. end if
  12. next
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement