Method: Aspose::Cloud::Cells::Workbook#process_smart_marker
- Defined in:
- lib/Cells/workbook.rb
#process_smart_marker(data_file = '') ⇒ Object
179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 |
# File 'lib/Cells/workbook.rb', line 179 def process_smart_marker data_file='' begin if data_file == '' raise 'Data file not specified' end str_uri = $product_uri + '/cells/' + @filename + '/smartmarker?xmlFile=' + data_file signed_uri = Aspose::Cloud::Common::Utils.sign(str_uri) response = RestClient.post(signed_uri,'', :accept => 'application/json') json = JSON.parse(response) return json rescue Exception=>e print e end end |