Page 1 of 1

OrderTransactionType

Posted: Mon Feb 14, 2022 12:27 am
by bandorganman
I have tried to figure this one out using the SDK doc and the Forum but have had no success. How do I set the OrderTransAction type to 'Refinance'???

Re: OrderTransactionType

Posted: Mon Feb 14, 2022 11:19 am
by BobRichards
This control on the Select UI always confuses people. It makes it look like there are four properties - one for each button - but the UI is just breaking out the four different enum values of a single property.

Code: Select all

using SoftPro.OrderTracking.Client.Orders;
using SoftPro.Select.Client;

// Set the "TransactionType" property to one of the "TransactionType" enums defined in "SoftPro.OrderTracking.Client.Orders"
order.SetProperty("TransactionType", TransactionType.Refinance);

// Save the order.
var os = ss.GetService<IOrderStore>();
os.ApplyChanges(order);

Re: OrderTransactionType

Posted: Mon Feb 14, 2022 2:16 pm
by bandorganman
Thanks!