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

module TkcTagAccess

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

要約

インスタンスメソッド

self & tag

[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)"
-

[TODO]

self ^ tag

[TODO]

addtag(tag)

[TODO]

bbox

[TODO]

bind(seq, *args)

[TODO]

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

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

end
bind_append(seq, *args)

[TODO]

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

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

end
bind_remove(seq)

[TODO]

bindinfo(seq = nil)

[TODO]

cget(option)

[TODO]

configinfo(key = nil)

[TODO]

def configure(keys)

  @c.itemconfigure @id, keys

end
configure(key, value = Tk::None)

[TODO]

coords(*args)

[TODO]

current_configinfo(key = nil)

[TODO]

dchars(first, last = Tk::None)

[TODO]

dtag(tag_to_del = Tk::None)
deltag(tag_to_del = Tk::None)

[TODO]

find
list

[TODO]

focus

[TODO]

gettags

[TODO]

icursor(index)

[TODO]

index(idx)

[TODO]

insert(beforethis, string)

[TODO]

itemtype

[TODO]

lower(belowthis = Tk::None)

[TODO]

move(xamount, yamount)

[TODO]

raise(abovethis = Tk::None)

[TODO]

scale(xorigin, yorigin, xscale, yscale)

[TODO]

select_adjust(index)

[TODO]

select_from(index)

[TODO]

select_to(index)

[TODO]

self | tag

[TODO]

module TkcTagAccess