Packagecom.cyntaxic.cynmvc.view.interfaces
Interfacepublic interface ICynView
Implementors CynComponent, CynComposite, CynView, CynViewProxy

This interface is used to define a CynView object.



Public Methods
 MethodDefined By
  
Optionally initialize a view.
ICynView
  
resize(vo:ResizeVO):void
Invoked when Event.RESIZE event is fired.
ICynView
Method Detail
init()method
public function init(vo:CyntaxicVO):CynView

Optionally initialize a view. This is useful when extending a graphical objects from a Flash library where the constructor is not available.

Parameters

vo:CyntaxicVO — The value object to pass parameters.

Returns
CynView — The CynView for chainability.
resize()method 
public function resize(vo:ResizeVO):void

Invoked when Event.RESIZE event is fired. A ResizeVO is passed in containing stage.stageWidth and stage.stageHeight properties.

Parameters

vo:ResizeVO — A ResizeVO containing stage.stageWidth and stage.stageHeight properties.