Class fvaswing.components.cursors.FvCopyCursor

Description

A 'copy/add' cursor.

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

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

Field Index

Inherited from FvCursor

Method Index

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

Inherited from FvAbstractCursor

Constructor Detail

FvCopyCursor

public function FvCopyCursor()

Constructor.

Cursor properties are initialized with constants values.

Method Detail

getInstance

static public function getInstance():FvCopyCursor

Returns a unique FvCopyCursor 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.