racket/collects/scribblings/gui/separator-menu-item-class.scrbl
Eli Barzilay ac26fe7554 A ton of @scheme*' -> @racket*' and related updates.
Also, updates some of the mzlib files to point at `racket/*' libraries
rather than to `scheme/*' ones.
2011-06-25 04:08:47 -04:00

16 lines
335 B
Racket

#lang scribble/doc
@(require "common.rkt")
@defclass/title[separator-menu-item% object% (menu-item<%>)]{
A separator is an unselectable line in a menu. Its parent must be a
@racket[menu%] or @racket[popup-menu%].
@defconstructor[([parent (or/c (is-a?/c menu%) (is-a?/c popup-menu%))])]{
Creates a new separator in the menu.
}}