Category / Section
                                    
                                How to move the Currency value from CurrencyEdit to Popup Calculator?
                
                
                    1 min read
                
            
    
To move the currency value from the CurrencyEdit textbox to the Popup Calculator, the TransferToCalculator Property should be True.
C#
currencyEdit1.TransferToCalculator = true;
VB
currencyEdit1.TransferToCalculator = True
By default, this property is True.
