Vuo  2.4.0
VuoNumberFormat.h
Go to the documentation of this file.
1
10#pragma once
11
12#include "VuoReal.h"
13
16#define VuoList_VuoNumberFormat_TYPE_DEFINED
18
30typedef enum
31{
32 VuoNumberFormat_Decimal,
33 VuoNumberFormat_Percentage,
34 VuoNumberFormat_Currency
36
41
43 VuoNumberFormat format,
44 VuoInteger minimumIntegerDigits,
45 VuoInteger minimumDecimalPlaces,
46 VuoInteger decimalPlaces,
47 bool showThousandSeparator);
48
49#define VuoNumberFormat_SUPPORTS_COMPARISON
50bool VuoNumberFormat_areEqual(const VuoNumberFormat valueA, const VuoNumberFormat valueB);
51bool VuoNumberFormat_isLessThan(const VuoNumberFormat valueA, const VuoNumberFormat valueB);
52
62