get_possible_conversions method
Leave feedback
On this page
Retrieves possible conversions for the source document.
- Learn more about supported conversions: Full list of supported conversions
- Learn more about available conversions: How to get supported conversions in code
def get_possible_conversions(self):
...
Returns: PossibleConversions
from groupdocs.conversion import Converter
with Converter("report.xlsx") as converter:
conversions = converter.get_possible_conversions()
primary = [c.format for c in conversions.all if c.is_primary]
print(f"Primary targets for {conversions.source.description}: {primary}")
- class
Converter
Was this page helpful?
Any additional feedback you'd like to share with us?
Please tell us how we can improve this page.
Thank you for your feedback!
We value your opinion. Your feedback will help us improve our documentation.