documenting the new functions view-has-attr? and remove-view-attr

This commit is contained in:
Danny Yoo 2011-11-22 02:46:34 -05:00
parent 32fb3812d1
commit 0773472d59
3 changed files with 16 additions and 1 deletions

View File

@ -671,10 +671,17 @@ in the tree, but not be shown.
Get the attribute @racket[name] at the focus.
}
@defproc[(view-has-attr? [v view] [name String]) boolean]{
Returns true if the element at the focus has an attribute @racket[name].
}
@defproc[(update-view-attr [v view] [name String] [value String]) view]{
Update the attribute @racket[name] with the value @racket[value] at the focus.
}
@defproc[(remove-view-attr [v view] [name String]) view]{
Remove the attribute @racket[name] at the focus.
}
@defproc[(view-css [v view] [name String]) view]{
Get the css value @racket[name] at the focus.

View File

@ -884,10 +884,18 @@ Hide the element at the focus.
Get the attribute @racket[name] at the focus.
}
@defproc[(view-has-attr? [v view] [name String]) boolean]{
Returns true if the element at the focus has an attribute @racket[name].
}
@defproc[(update-view-attr [v view] [name String] [value String]) view]{
Update the attribute @racket[name] with the value @racket[value] at the focus.
}
@defproc[(remove-view-attr [v view] [name String]) view]{
Remove the attribute @racket[name] at the focus.
}
@defproc[(view-css [v view] [name String]) view]{
Get the css value @racket[name] at the focus.
}

View File

@ -7,4 +7,4 @@
(provide version)
(: version String)
(define version "1.93")
(define version "1.94")