Displaying 2 results from an estimated 2 matches for "show_font".
2006 Nov 13
0
[735] trunk/wxruby2: Got the ''get_item_sample'' sample working had to add some missing ListCtrl constants.
...olumn,"\n"
- print "text: ",item.get_text,"\n"
- print "text color:",show_color(item.get_text_colour),"\n"
- print "BG color: ",show_color(item.get_background_colour),"\n"
- print "font: ",show_font(item.get_font),"\n\n"
</del><ins>+ item = Wx::ListItem.new()
+ item.set_id(i)
+ if list.get_item(item)
+ print "ID:",item.get_id,"\n"
+ print "column: ",item.get_column,"\n"
+ print "text...
2006 Nov 15
0
[740] trunk/wxruby2: API - Make ListCtrl#get_item return a ListCtrl item corresponding to a row and
...;,item.get_column,"\n"
</span><span class="cx"> print "text: ",item.get_text,"\n"
</span><span class="lines">@@ -46,10 +44,9 @@
</span><span class="cx"> print "font: ",show_font(item.get_font),"\n\n"
</span><span class="cx"> end
</span><span class="cx"> end
</span><ins>+ # test other column
</ins><span class="cx"> 0.upto(2) do |i|
</span><del>- item = W...