GetOrderComment
Syntax
GetOrderComment(): stringReturn Value
Description
Example
// Select an order by ticket number
if (this.api.SelectOrder(12345, EOrderSelectMode.SELECT_ORDER_BY_TICKET)) {
// Get the order comment
const comment = this.api.GetOrderComment();
console.log(`Order #12345 comment: ${comment}`);
}Notes
Last updated