Class: AsposeWordsCloud::ReportBuildOptions
- Inherits:
-
Object
- Object
- AsposeWordsCloud::ReportBuildOptions
- Defined in:
- lib/aspose_words_cloud/models/report_build_options.rb
Overview
Specifies options controlling behavior of ReportingEngine while building a report.
Constant Summary collapse
- NONE =
"None".freeze
- ALLOWMISSINGMEMBERS =
"AllowMissingMembers".freeze
- REMOVEEMPTYPARAGRAPHS =
"RemoveEmptyParagraphs".freeze
- INLINEERRORMESSAGES =
"InlineErrorMessages".freeze
- USELEGACYHEADERFOOTERVISITING =
"UseLegacyHeaderFooterVisiting".freeze
- RESPECTJPEGEXIFORIENTATION =
"RespectJpegExifOrientation".freeze
- UPDATEFIELDSSYNTAXAWARE =
"UpdateFieldsSyntaxAware".freeze
Instance Method Summary collapse
-
#build_from_hash(value) ⇒ String
Builds the enum from string.
Instance Method Details
#build_from_hash(value) ⇒ String
Builds the enum from string
43 44 45 46 47 |
# File 'lib/aspose_words_cloud/models/report_build_options.rb', line 43 def build_from_hash(value) constantValues = ReportBuildOptions.constants.select{|c| ReportBuildOptions::const_get(c) == value} raise "Invalid ENUM value #{value} for class #ReportBuildOptions" if constantValues.empty? value end |