# Scrollbar in Gtk

**URL:** https://discourse.julialang.org/t/scrollbar-in-gtk/5498
**Category:** General Usage
**Tags:** question
**Created:** [August 22, 2017, 8:59am UTC](https://discourse.julialang.org/t/scrollbar-in-gtk/5498 "2017-08-22T08:59:54Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![yakir12](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/yakir12/32/297_2.png) [@yakir12](https://discourse.julialang.org/u/yakir12)
#### Post date: [August 22, 2017, 8:59am UTC](https://discourse.julialang.org/t/scrollbar-in-gtk/5498/1 "2017-08-22T08:59:54Z")

</div>

Hi all!

I need to display some informative text in a window. Usually the text consists of a few short lines but sometimes the number of lines is very large.  
Is there a way for the text to be displayed in a fixed size window and have a scrollbar allow the user to see the rest of the text?

For that matter, is there a way to wrap anything in a fixed-sized container that allows further exploration of hidden content via a scrollbar?

Thanks a bunch!

---

<div class="post-metadata">

### Author: ![lobingera](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/lobingera/32/211_2.png) [@lobingera](https://discourse.julialang.org/u/lobingera)
#### Post date: [August 22, 2017, 10:23am UTC](https://discourse.julialang.org/t/scrollbar-in-gtk/5498/2 "2017-08-22T10:23:42Z")

</div>

i did this scrolled canvas example some time ago:  
[https://groups.google.com/d/msg/julia-users/uBgKhN3Ycro/ivjoVqZ3CAAJ](https://groups.google.com/d/msg/julia-users/uBgKhN3Ycro/ivjoVqZ3CAAJ)  
and you should find inspiration in:  
[http://www.pygtk.org/pygtktutorial/sec-scrolledwindows.html](http://www.pygtk.org/pygtktutorial/sec-scrolledwindows.html)  
and:  
[https://developer.gnome.org/gtk-tutorial/stable/c633.html#SEC-SCROLLBARWIDGETS](https://developer.gnome.org/gtk-tutorial/stable/c633.html#SEC-SCROLLBARWIDGETS)

---

<div class="post-metadata">

### Author: ![yakir12](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/yakir12/32/297_2.png) [@yakir12](https://discourse.julialang.org/u/yakir12)
#### Post date: [August 22, 2017, 11:03am UTC](https://discourse.julialang.org/t/scrollbar-in-gtk/5498/3 "2017-08-22T11:03:33Z")

</div>

Totally worked!!! Thanks!
