Searched refs:CounterType (Results 1 – 4 of 4) sorted by relevance
/ohos5.0/docs/zh-cn/application-dev/reference/apis-arkui/arkui-ts/ |
H A D | ohos-arkui-advanced-Counter.md | 57 | CounterType.LIST | NumberStyleOptions | 62 ## CounterType section 64 CounterType指定Counter的类型,如列表型Counter。 209 type: CounterType.LIST, 239 type: CounterType.COMPACT, 269 type: CounterType.INLINE, 302 type: CounterType.INLINE_DATE, 337 type: CounterType.LIST, 352 type: CounterType.COMPACT, 366 type: CounterType.INLINE, [all …]
|
/ohos5.0/docs/en/application-dev/reference/apis-arkui/arkui-ts/ |
H A D | ohos-arkui-advanced-Counter.md | 57 | CounterType.LIST | NumberStyleOptions | 58 | CounterType.COMPACT | NumberStyleOptions | 62 ## CounterType section 207 type: CounterType.LIST, 234 type: CounterType.COMPACT, 261 type: CounterType.INLINE, 291 type: CounterType.INLINE_DATE, 325 type: CounterType.LIST, 340 type: CounterType.COMPACT, 354 type: CounterType.INLINE, [all …]
|
/ohos5.0/foundation/arkui/ace_engine/advanced_ui_component/counter/interfaces/ |
H A D | counter.js | 20 export var CounterType; variable 26 })(CounterType || (CounterType = {})); 1124 if (this.type === CounterType.LIST || 1125 this.type === CounterType.COMPACT) { 1129 else if (this.type === CounterType.INLINE) { 1133 else if (this.type === CounterType.INLINE_DATE) { 1175 if (this.type === CounterType.INLINE) { 1601 if (this.type === CounterType.LIST) { 1870 else if (this.type === CounterType.COMPACT) { 2119 else if (this.type === CounterType.INLINE) { [all …]
|
/ohos5.0/foundation/arkui/ace_engine/advanced_ui_component/counter/source/ |
H A D | counter.ets | 18 export enum CounterType { 84 public type: CounterType; 473 if (this.type === CounterType.LIST || 474 this.type === CounterType.COMPACT) { 477 } else if (this.type === CounterType.INLINE) { 480 } else if (this.type === CounterType.INLINE_DATE) { 521 if (this.type === CounterType.INLINE) { 924 if (this.type === CounterType.LIST) { 1154 } else if (this.type === CounterType.COMPACT) { 1365 } else if (this.type === CounterType.INLINE) { [all …]
|