Module: Asposetasksjava::CurrencyProperties
- Defined in:
- lib/asposetasksjava/Projects/currencyproperties.rb
Instance Method Summary collapse
Instance Method Details
#get_currency_properties ⇒ Object
11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
# File 'lib/asposetasksjava/Projects/currencyproperties.rb', line 11 def get_currency_properties() data_dir = File.dirname(File.dirname(File.dirname(File.dirname(__FILE__)))) + '/data/' # Instantiate project object project = Rjb::import('com.aspose.tasks.Project').new(data_dir + 'test_tasks.mpp') prj = Rjb::import('com.aspose.tasks.Prj') # Display currency properties puts "Currency Code : " + project.get(prj.CURRENCY_CODE).toString() puts "<br>Currency Digits : " + project.get(prj.CURRENCY_DIGITS).toString() puts "<br>Currency Symbol : " + project.get(prj.CURRENCY_SYMBOL).toString() puts "Currency Symbol Position: " + project.get(prj.CURRENCY_SYMBOL_POSITION).toString() end |
#initialize ⇒ Object
3 4 5 6 7 8 9 |
# File 'lib/asposetasksjava/Projects/currencyproperties.rb', line 3 def initialize() # Reading Currency Properties get_currency_properties() # Writing Currency Properties set_currency_properties() end |
#set_currency_properties ⇒ Object
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
# File 'lib/asposetasksjava/Projects/currencyproperties.rb', line 26 def set_currency_properties() data_dir = File.dirname(File.dirname(File.dirname(File.dirname(__FILE__)))) + '/data/' # Instantiate project object project = Rjb::import('com.aspose.tasks.Project').new prj = Rjb::import('com.aspose.tasks.Prj') # Set currency properties project.set(prj.CURRENCY_CODE, "AUD") project.set(prj.CURRENCY_DIGITS, 2) project.set(prj.CURRENCY_SYMBOL, "$") project.set(prj.CURRENCY_SYMBOL_POSITION, Rjb::import('com.aspose.tasks.CurrencySymbolPositionType').After) project.save(data_dir + "currency_properties.xml", Rjb::import('com.aspose.tasks.SaveFileFormat').XML) puts "Set currency properties, please check the output file." end |