class NumPlot::EnhancedText

Represents “enhanced text” in enhanced text mode All unmarked texts are handled as “non enhanced text” and all special characters are escaped in enhanced text mode.

Attributes

text[R]

@return [String] a text

Public Class Methods

new(text) click to toggle source

Create an EnhancedText object.

You can use the short-cut method {NumPlot#ET}.

# File lib/numplot.rb, line 756
def initialize(text)
  @text = text
end