Taylor Southwick

Results 199 comments of Taylor Southwick

Thanks @ThomasBarnekow . I agree this would be better labeled as an enhancement. I would love to see the SDK provide full support for navigation around a document and not...

@ThomasBarnekow I've been looking at cleaning up the schema generation and was trying to understand about this. I'm still trying to wrap my head around the actual OpenXml spec and...

Ah I see it in the actual schema with `sequence` vs `all`

As part of the current release, I've been taking care of a ton of technical debt, including making the validation system more transparent. As part of this, I created a...

@ThomasBarnekow I have a POC of what this may look like. The data structure #676 provides would allow for either of the options I listed above. For now, the change...

@ThomasBarnekow Thanks for your thoughts. That's actually a good argument about updating the `AppendChild` behavior. It could be hidden behind an `AppContext` switch if needed. Definitely worth exploring. As for...

At this point, I'm thinking about exposing the following API: ```csharp public class OpenXmlCompositeElement { public bool TryAppendChild(OpenXmlElement child, AppendOption option) { if(option == AppendOption.List) { AppendChild(child); return true; }...

Thanks for the thoughts! Adding that *to* the `AppendChild` would be a breaking change (adding optional parameters are breaking as it changes the signature of the API). However, we could...

We're looking at what needs to be done to get the Office 2016 code merged in. We're hoping sooner than later :) I'm not certain if this support is already...

Unfortunately, they're not available. We're trying to get things updated and would like to make them public, but that hasn't happened yet.