Import Ruty
This commit is contained in:
+12
@@ -0,0 +1,12 @@
|
||||
var Element = require('./element');
|
||||
|
||||
module.exports = TextElement = function(text, format){
|
||||
Element.apply(this, [format]);
|
||||
this.text=text;
|
||||
};
|
||||
|
||||
TextElement.subclass(Element);
|
||||
|
||||
TextElement.prototype.getRTFCode = function(colorTable, fontTable, callback){
|
||||
return callback(null, this.format.formatText(this.text, colorTable, fontTable));
|
||||
};
|
||||
Reference in New Issue
Block a user