Movatterモバイル変換


[0]ホーム

URL:


Jump to content
WikibooksThe Free Textbook Project
Search

Rebol Programming/request-list

From Wikibooks, open books for an open world
<Rebol Programming
This page may need to bereviewed for quality.

USAGE:

[edit |edit source]
REQUEST-LIST titl alist /offset xy

DESCRIPTION:

[edit |edit source]

Requests a selection from a list.

REQUEST-LIST is a function value.

ARGUMENTS

[edit |edit source]
  • titl -- (Type: string)
  • alist -- (Type: block)

REFINEMENTS

[edit |edit source]
  • /offset
    • xy -- (Type: any)

SOURCE CODE

[edit |edit source]
request-list: func [    "Requests a selection from a list."     titl [string!]     alist [block!] /offset xy /local rslt list-lay][    list-lay: layout [        origin 10x10         h3 titl         text-list data alist [rslt: value hide-popup]         btn-cancel #"^[" [rslt: none hide-popup]    ]     rslt: none     either offset [inform/offset list-lay xy] [inform list-lay]     rslt]
Retrieved from "https://en.wikibooks.org/w/index.php?title=Rebol_Programming/request-list&oldid=3353005"
Category:

[8]ページ先頭

©2009-2025 Movatter.jp