Code Monkey home page Code Monkey logo

Comments (10)

scottyd57 avatar scottyd57 commented on July 17, 2024 1

I would be willing to look into this feature. I need this to process my excel files. Let me know if I can help.

from libxlsxwriter.

jmcnamara avatar jmcnamara commented on July 17, 2024

Let me know if I can help.

Thanks for the offer. Libxlsxwriter is mainly a port of the Python and Perl libraries that I wrote. I have the tests, docs and an API so in general I don't need help.

What I do need is time to work on it and I've had even less of that recently than usual.

from libxlsxwriter.

jmcnamara avatar jmcnamara commented on July 17, 2024

Since I've had a few requests about this I've added a note about making donations to prioritize this feature.

from libxlsxwriter.

LifeToDevice avatar LifeToDevice commented on July 17, 2024

+1

from libxlsxwriter.

sevenyang2019 avatar sevenyang2019 commented on July 17, 2024

can libxlsxwriter support the function of write_comments now ?

from libxlsxwriter.

jmcnamara avatar jmcnamara commented on July 17, 2024

@sevenyang2019 No. This issue would be closed if it was completed or updated if there was some progress.

from libxlsxwriter.

jmcnamara avatar jmcnamara commented on July 17, 2024

The initial version of comment support is available on the "vml" branch. You can now add comments to libxlsxwriter cells as follows:

#include "xlsxwriter.h"

int main() {

    lxw_workbook  *workbook  = workbook_new("comments1.xlsx");
    lxw_worksheet *worksheet = workbook_add_worksheet(workbook, NULL);

    worksheet_write_string( worksheet, 0, 0, "Hello" , NULL);

    worksheet_write_comment(worksheet, 0, 0, "This is a comment");

    return workbook_close(workbook);
}

And get output like this:

comments1

It only works when lxw_workbook_options constant_memory = LXW_FALSE (which is the default).

I'll be adding more options and documentation in the next week or so but if anyone is feeling brave and would like to try it let me know how you get on.

The eventual functionality will be like XlsxWriter: https://xlsxwriter.readthedocs.io/working_with_cell_comments.html

from libxlsxwriter.

jmcnamara avatar jmcnamara commented on July 17, 2024

I've added some additional functionality, more tests, and merged this up to master. Docs and further examples to be added. Note, please don't use the vml branch anymore since it has an issue.

from libxlsxwriter.

jmcnamara avatar jmcnamara commented on July 17, 2024

The final version of this feature is now on master with docs and examples if anyone wants to try it. I will push it out to the packagers in the next few days.

from libxlsxwriter.

jmcnamara avatar jmcnamara commented on July 17, 2024

Upstream in version 0.92/0.93.

from libxlsxwriter.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.