class AsposePdfCloud::BorderStyle
Constants
- BEVELED
- DASHED
- INSET
- SOLID
- UNDERLINE
Public Instance Methods
Source
# File lib/aspose_pdf_cloud/models/border_style.rb, line 37 def build_from_hash(value) # resolve issue with Concstant Name modification (ex: "FooName" to :FOO_NAME) # consantValues = BorderStyle.constants.select{|c| c.to_s == value} constantValues = BorderStyle.constants.select{ |const_name| BorderStyle.const_get(const_name) == value} raise "Invalid ENUM value #{value} for class #BorderStyle" if constantValues.empty? value end
Builds the enum from string @param [String] The enum value in the form of the string @return [String] The enum value