Method: Autocad::Drawing#text_styles
- Defined in:
- lib/autocad/drawing.rb
#text_styles {|TextStyle| ... } ⇒ Enumerator<TextStyle>
Get all text styles in the drawing &: (TextStyle) -> void
610 611 612 613 |
# File 'lib/autocad/drawing.rb', line 610 def text_styles return to_enum(__callee__) unless block_given? ole_obj.TextStyles.each { |o| yield app.wrap(o) } end |