How to make DiagramBlock cannot be rotated

I need to make sure user doesn't rotate any Block, so is there any way how to prohobit rotating DiagramBlock?

You must set Restrictions property of each block you don't want to be rotated:


Block.Restrictions := Block.Restrictions + [crNoRotation];

Thank you verymuch :D