convert_ppt_options.dart 810 B

1234567891011121314151617181920212223
  1. /// convert_ppt_options.dart
  2. ///
  3. /// Copyright © 2014-2023 PDF Technologies, Inc. All Rights Reserved.
  4. ///
  5. /// THIS SOURCE CODE AND ANY ACCOMPANYING DOCUMENTATION ARE PROTECTED BY INTERNATIONAL COPYRIGHT LAW
  6. /// AND MAY NOT BE RESOLD OR REDISTRIBUTED. USAGE IS BOUND TO THE ComPDFKit LICENSE AGREEMENT.
  7. /// UNAUTHORIZED REPRODUCTION OR DISTRIBUTION IS SUBJECT TO CIVIL AND CRIMINAL PENALTIES.
  8. /// This notice may not be removed from this file.
  9. import 'options.dart';
  10. /// Convert pdf to pptx format parameters
  11. class ConvertPPTOptions extends Options {
  12. bool containImages;
  13. bool containAnnotations;
  14. ConvertPPTOptions({this.containImages = true, this.containAnnotations = true})
  15. : super() {
  16. map['containImages'] = containImages;
  17. map['containAnnotations'] = containAnnotations;
  18. }
  19. }