DocExtentSize PropertyChanged not raised?

When I scale, scroll the view I get the OnPropertyChanged raised on my GoView subclassed control.
But not when I call goSize() or goResize() (to do some stuff when resizing the view).
What am’i missing ?

Thanks

This is WebForms, right?
The JavaScript functions goSize and goResize end up setting the WebControl.Width and .Height properties on the server. Off hand I don’t know of any events that are raised when those properties are set. If there is something other than overriding the Width and Height property setters, that would be something defined by ASP.NET, not by us.

Right Walter !
Overriding Height and Width of the control is the solution.

Thanks again.