Sha256: 276561d53f1d00a7384f9961ad3af5cc673fb7f335f1b2d59bafc5821a3d8486
Contents?: true
Size: 731 Bytes
Versions: 9
Compression:
Stored size: 731 Bytes
Contents
module Tk class Canvas # Items of type arc appear on the display as arc-shaped regions. # An arc is a section of an oval delimited by two angles (specified by the # :start and :extent options) and displayed in one of several ways # (specified by the :style option). class Arc < Item options( :dash, :activedash, :disableddash, :dashoffset, :fill, :activefill, :disabledfill, :offset, :outline, :activeoutline, :disabledoutline, :outlineoffset, :outlinestipple, :activeoutlinestipple, :disabledoutlinestipple, :stipple, :activestipple, :disabledstipple, :state, :tags, :width, :activewidth, :disabledwidth, :extent, :start, :style ) end end end
Version data entries
9 entries across 9 versions & 1 rubygems