Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

allow access to part from elements #1543

Merged
merged 1 commit into from
Oct 19, 2023
Merged

allow access to part from elements #1543

merged 1 commit into from
Oct 19, 2023

Conversation

tomjebo
Copy link
Collaborator

@tomjebo tomjebo commented Oct 18, 2023

With this change, it's possible to do this:

OpenXmlPartRootElement partRoot = pShape.Ancestors<OpenXmlPartRootElement>().First();

if (partRoot.OpenXmlPart is null)
{
    Console.WriteLine("partRoot is null");
    return;
}

OpenXmlPart part = partRoot.OpenXmlPart;

@github-actions
Copy link

Test Results

     108 files  ±0       108 suites  ±0   1h 15m 4s ⏱️ -22s
  2 011 tests ±0    2 008 ✔️ ±0    3 💤 ±0  0 ±0 
48 006 runs  ±0  47 952 ✔️ ±0  54 💤 ±0  0 ±0 

Results for commit 620b874. ± Comparison against base commit f697af4.

@tomjebo
Copy link
Collaborator Author

tomjebo commented Oct 19, 2023

@ashahabov Please take a look at this. I think this would meet your needs based on your StackOverflow question.

Copy link
Member

@twsouthwick twsouthwick left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM - do we want this in v3?

@tomjebo
Copy link
Collaborator Author

tomjebo commented Oct 19, 2023

LGTM - do we want this in v3?

yeah, I think that'd be nice.

@tomjebo
Copy link
Collaborator Author

tomjebo commented Oct 19, 2023

@twsouthwick regression test I guess would be to make sure the property doesn't go back to full internal or private. not sure if we really need a test though.

@twsouthwick
Copy link
Member

No that's not needed. We'll catch that in review

@tomjebo tomjebo merged commit a4bccf2 into dotnet:main Oct 19, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants