You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#@ Double (value=123.45, persist=false, style="format:#####.#####") k
82
+
#@ Double (value=123.45, persist=false, style="format:00000.00000") l
83
+
```
84
+
85
+
... in combination with slider or scrollbars:
86
+
```
87
+
// Sliders and scroll bars
88
+
#@ Double (value=1, min=0, max=10, stepSize=0.001, persist=false, style=slider) m
89
+
#@ Double (value=1, min=0, max=10, stepSize=0.001, persist=false, style="slider,format:0.0000") n
90
+
#@ Double (value=1, min=0, max=10, stepSize=0.001, persist=false, style="scroll bar") o
91
+
#@ Double (value=1, min=0, max=10, stepSize=0.001, persist=false, style="scroll bar,format:0.0000") p
92
+
```
93
+
94
+
Scientific notation can be specified with `format:0.#####E0`
95
+
76
96
## Parameter properties
77
97
78
98
If you look at the [@Parameter annotation](https://github.com/scijava/scijava-common/blob/scijava-common-2.40.0/src/main/java/org/scijava/plugin/Parameter.java), you will notice it has many properties—for example, `name` and `description`.
0 commit comments