Rebol Programming/set-modes

USAGE:Edit

SET-MODES target modes 

DESCRIPTION:Edit

Changes mode settings for a port.

SET-MODES is a native value.

ARGUMENTSEdit

  • target -- (Type: file url block port)
  • modes -- (Type: block)

SOURCE CODEEdit

set-modes: native[
    "Changes mode settings for a port." 
    target [file! url! block! port!] 
    modes [block!]
]