Class fvaswing.components.cursors.FvRejectCursor

Description

A 'reject/remove' cursor.

There are 2 ways to use cursor.
First, classic instantiation and AsWing CursorManager use.

   var cursor : FvRejectCursor = new FvRejectCursor();
   CursorManager.showCustomCursor( cursor );
 
Second, use direct show method.
    FvRejectCursor.show();
 

Field Index

Inherited from FvCursor

Method Index

new FvRejectCursor()
getInstance(), hide(), repaint(), show()

Inherited from FvAbstractCursor

Constructor Detail

FvRejectCursor

public function FvRejectCursor()

Constructor.

Cursor properties are initialized with constants values.

Method Detail

getInstance

static public function getInstance():FvRejectCursor

Returns a unique FvRejectCursor instance.

show

static public function show():Void

Shows cursor and hides the system cursor.

hide

static public function hide():Void

Hides cursor and shows the default system cursor.

repaint

public function repaint():Void

Concrete drawing implementation.