javascript - How to implement Multi Column Textbox -


is there method can use add multi column textbox in fabricjs? short of ideas here. appreciated.

currently using code textbox.

 var newtext = new fabric.textbox('double click me edit contents.', {                      fontweight: 400,                      fontsize: 28 / canvas.currentzoom,                      fill: '#000',                      removeoncancel: true,                      name: 'text'                  });                    canvas.pages[canvas.activepageindex].fabric.add(newtext);                  newtext.settop(25);                  newtext.setleft(25);                  canvas.pages[canvas.activepageindex].fabric.setactiveobject(newtext);                  canvas.pages[canvas.activepageindex].fabric.renderall();

here pictorial representation trying achieve in fabricjsimage


Comments

Popular posts from this blog

commonjs - How to write a typescript definition file for a node module that exports a function? -

openid - Okta: Failed to get authorization code through API call -

thorough guide for profiling racket code -