Method: Writexlsx::Utility#shape_style_base

Defined in:
lib/write_xlsx/utility.rb

#shape_style_base(left_str, top_str, width_str, height_str, z_index_str) ⇒ Object



519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
# File 'lib/write_xlsx/utility.rb', line 519

def shape_style_base(left_str, top_str, width_str, height_str, z_index_str)
  [
    'position:absolute;',
    'margin-left:',
    left_str, 'pt;',
    'margin-top:',
    top_str, 'pt;',
    'width:',
    width_str, 'pt;',
    'height:',
    height_str, 'pt;',
    'z-index:',
    z_index_str, ';'
  ]
end