MathNya / umya-spreadsheet

A pure rust library for reading and writing spreadsheet files
MIT License
238 stars 41 forks source link

Unable to read custom properties defined at excel #173

Closed BharathIO closed 4 months ago

BharathIO commented 4 months ago

Hi, I tried to read custom properties defined at excel. But i am getting empty Vector as result. I did set one text variable and one number type variable and i am not able to get both the values. Can someone please help me how to read them?

i have a usecase to write a new value to excel too.

BharathIO commented 4 months ago

I am using below code to read properties.

pub fn get_custom_properties(&self) -> &Vec<String> {
        &self.custom_properties
    }
MathNya commented 4 months ago

@BharathIO Thank you for contacting us. The current version did not support custom properties. get_custom_properties() returns empty. set_custom_properties() does not refer to it when saving.

We will consider supporting this in the next version update.

BharathIO commented 4 months ago

Oh ok, when can we expect next version with custom properties support?

MathNya commented 4 months ago

@BharathIO We expect to have a release by the end of this week. We will respond as soon as possible.

BharathIO commented 4 months ago

Thanks. Hope we will get support to read and write custom properties.

MathNya commented 4 months ago

@BharathIO The latest version has been released. Please check it out.

BharathIO commented 4 months ago

Thanks, it is working.