Cursor: Difference between revisions

From BR Wiki
Jump to navigation Jump to search
No edit summary
Line 1: Line 1:
The CURSOR keyword allows you to change the appearance of the cursor, either in [[BRConfig.sys]] or using the [[Config]] command, or even from with the program using the [[Execute]] statement.  
The CURSOR keyword allows you to change the appearance of the BR pointer, either in [[BRConfig.sys]] or using the [[Config]] command, or even from with the program using the [[Execute]] statement.  


===Syntax===
===Syntax===
Line 12: Line 12:


===Examples===  
===Examples===  
CONFIG CURSOR 010D
[[image:010D.jpg]]
CONFIG CURSOR 050c
[[image:050c.jpg]]
CONFIG CURSOR 080D
[[image:080D.jpg]]
CONFIG CURSOR 0D08
[[image:010D.jpg]]
CONFIG CURSOR 0505
[[image:0505.jpg]]


===Other===
===Other===

Revision as of 20:01, 28 July 2015

The CURSOR keyword allows you to change the appearance of the BR pointer, either in BRConfig.sys or using the Config command, or even from with the program using the Execute statement.

Syntax

CURSOR SSEE 

"SS" is the start in hexidecimal.
"EE" is the end in hexidecimal.

There is no space between them.

SS and EE must be in the range 00-0D, specifying the section of a block cursor with 00 being at the top and 0D being at the bottom. For example, to obtain a cursor of the lower half of a full block cursor, specify 080D.

Examples

CONFIG CURSOR 010D 

CONFIG CURSOR 050c 

CONFIG CURSOR 080D 

CONFIG CURSOR 0D08 

CONFIG CURSOR 0505 

Other

See also Control Keys and Predefined Functions for cursor movement.