Skip to main content
Participant
May 4, 2009
Answered

Howto check type of flowgroupelement paragraph/div

  • May 4, 2009
  • 1 reply
  • 531 views

How can i check if a flowgroupelement is a paragraph or div element

This topic has been closed for replies.
Correct answer rdermer

How about

function isDivElement(elem:FlowGroupElement):Boolean

{ return elem is DivElement; }

1 reply

rdermerCorrect answer
Adobe Employee
May 4, 2009

How about

function isDivElement(elem:FlowGroupElement):Boolean

{ return elem is DivElement; }