Ruby 1.8.7 リファレンスマニュアル > ライブラリ一覧 > tk/canvastagライブラリ > TkcTagAccessモジュール

module TkcTagAccess

クラスの継承リスト: TkcTagAccess < TkComm < TkUtil < TkEvent < TkTreatTagFont

要約

目次

インスタンスメソッド
& -@ ^ addtag bbox bind bind_append bind_remove bindinfo cget configinfo configure coords current_configinfo dchars deltag dtag find list focus gettags icursor index insert itemtype lower move raise scale select_adjust select_from select_to |

インスタンスメソッド

self & tag[permalink][rdoc]

[TODO]

Following operators support logical expressions of canvas tags (for Tk8.3+). If tag1.path is 't1' and tag2.path is 't2', then

ltag = tag1 & tag2; ltag.path => "(t1)&&(t2)"
ltag = tag1 | tag2; ltag.path => "(t1)||(t2)"
ltag = tag1 ^ tag2; ltag.path => "(t1)^(t2)"
ltag = - tag1;      ltag.path => "!(t1)"
- self[permalink][rdoc]

[TODO]

self ^ tag[permalink][rdoc]

[TODO]

addtag(tag)[permalink][rdoc]

[TODO]

bbox[permalink][rdoc]

[TODO]

bind(seq, *args)[permalink][rdoc]

[TODO]

def bind(seq, cmd=Proc.new, *args)

  @c.itembind(@id, seq, cmd, *args)
  self

end
bind_append(seq, *args)[permalink][rdoc]

[TODO]

def bind_append(seq, cmd=Proc.new, *args)

  @c.itembind_append(@id, seq, cmd, *args)
  self

end
bind_remove(seq)[permalink][rdoc]

[TODO]

bindinfo(seq = nil)[permalink][rdoc]

[TODO]

cget(option)[permalink][rdoc]

[TODO]

configinfo(key = nil)[permalink][rdoc]

[TODO]

def configure(keys)

  @c.itemconfigure @id, keys

end
configure(key, value = Tk::None)[permalink][rdoc]

[TODO]

coords(*args)[permalink][rdoc]

[TODO]

current_configinfo(key = nil)[permalink][rdoc]

[TODO]

dchars(first, last = Tk::None)[permalink][rdoc]

[TODO]

dtag(tag_to_del = Tk::None)[permalink][rdoc]
deltag(tag_to_del = Tk::None)

[TODO]

find[permalink][rdoc]
list

[TODO]

focus[permalink][rdoc]

[TODO]

gettags[permalink][rdoc]

[TODO]

icursor(index)[permalink][rdoc]

[TODO]

index(idx)[permalink][rdoc]

[TODO]

insert(beforethis, string)[permalink][rdoc]

[TODO]

itemtype[permalink][rdoc]

[TODO]

lower(belowthis = Tk::None)[permalink][rdoc]

[TODO]

move(xamount, yamount)[permalink][rdoc]

[TODO]

raise(abovethis = Tk::None)[permalink][rdoc]

[TODO]

scale(xorigin, yorigin, xscale, yscale)[permalink][rdoc]

[TODO]

select_adjust(index)[permalink][rdoc]

[TODO]

select_from(index)[permalink][rdoc]

[TODO]

select_to(index)[permalink][rdoc]

[TODO]

self | tag[permalink][rdoc]

[TODO]