I’m using a solution inside SAP to create XLSX files using a XML.
I need to change the part of the code that create comments, because the size of the comment is too small.
I’ve seen the following line creating the XML:
size:auto;width:auto;height:auto;position:absolute;margin-left:117pt;margin-top:172.5pt;z-index:1;visibility:hidden
I’m trying to change some things in this line but nothing happens.
I know that this a specific solution for SAP, but maybe some of you know how to change this XML code to change the result.
This is the entire code used in Abap:
CONCATENATE '_x0000_s' lv_attr_id INTO lv_attr_id.
lo_element_shape->set_attribute_ns( : name = lc_xml_attr_id value = lv_attr_id ),
name = lc_xml_attr_type value = '#_x0000_t202' ),
name = lc_xml_attr_style value = 'size:auto;width:auto;height:auto;position:absolute;margin-left:117pt;margin-top:172.5pt;z-index:1;visibility:hidden' ),
name = lc_xml_attr_fillcolor value = 'FFF0E1' ),
name = lc_xml_attr_oinsetmode value = lc_xml_attr_val_auto ).
Any tip are welcomed.
Thanks in advance.