documenting the new functions view-has-attr? and remove-view-attr
This commit is contained in:
parent
32fb3812d1
commit
0773472d59
|
@ -671,10 +671,17 @@ in the tree, but not be shown.
|
||||||
Get the attribute @racket[name] 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]{
|
@defproc[(update-view-attr [v view] [name String] [value String]) view]{
|
||||||
Update the attribute @racket[name] with the value @racket[value] at the focus.
|
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]{
|
@defproc[(view-css [v view] [name String]) view]{
|
||||||
Get the css value @racket[name] at the focus.
|
Get the css value @racket[name] at the focus.
|
||||||
|
|
|
@ -884,10 +884,18 @@ Hide the element at the focus.
|
||||||
Get the attribute @racket[name] 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]{
|
@defproc[(update-view-attr [v view] [name String] [value String]) view]{
|
||||||
Update the attribute @racket[name] with the value @racket[value] at the focus.
|
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]{
|
@defproc[(view-css [v view] [name String]) view]{
|
||||||
Get the css value @racket[name] at the focus.
|
Get the css value @racket[name] at the focus.
|
||||||
}
|
}
|
||||||
|
|
|
@ -7,4 +7,4 @@
|
||||||
(provide version)
|
(provide version)
|
||||||
(: version String)
|
(: version String)
|
||||||
|
|
||||||
(define version "1.93")
|
(define version "1.94")
|
||||||
|
|
Loading…
Reference in New Issue
Block a user