Skip to content

Commit ce52ab5

Browse files
committed
missing initproc property description
1 parent 528d01a commit ce52ab5

File tree

2 files changed

+15
-14
lines changed

2 files changed

+15
-14
lines changed

Project/Sources/Classes/_4DPop.4dm

+2-2
Original file line numberDiff line numberDiff line change
@@ -332,7 +332,7 @@ Function getDependencies() : Collection
332332
return $c
333333

334334
// === === === === === === === === === === === === === === === === === === === === === === === ===
335-
// Display the palett
335+
// Display the palette
336336
Function display()
337337

338338
var $height; $width : Integer
@@ -493,7 +493,7 @@ Function abort()
493493

494494
For ($i; 1; Count user processes:C343; 1)
495495

496-
PROCESS PROPERTIES:C336($i; $t; $l; $l)
496+
_O_PROCESS PROPERTIES:C336($i; $t; $l; $l)
497497

498498
If ($t="$4DPop")
499499

README.md

+13-12
Original file line numberDiff line numberDiff line change
@@ -251,21 +251,22 @@ The manifest describes the elements of the component that will be available via
251251
}
252252
```
253253

254-
| Attributes | | ||
255-
|---- | ----| ----| ----|
256-
| `name` | The name that will be displayed below the button | ① | Mandatory
257-
| `media` | File name of the image used for the button. |⑦| If omitted a default picture is used
258-
| `handler` | The name of the ‘entry point’ method for your component. <br>I suggest that this name starts with an underscore (`_`) to avoid it interfering with the type ahead, as it is shared. | ② | Mandatory
259-
| `default` | The name of the method to be executed when the user clicks on the strip's button | ③ ④ ⑤| Optional if `tools`is defined
260-
| `tools` | Collection of [tool objects](#tool) that will be displayed as a linked menu | ④ ⑥
261-
| `popup` | To force the display of a linked menu indicator even if there is only one tool | ④
262-
| `ondrop` | The name of the method to be executed at the time of a drop on the button | ③
263-
| `helptip` | Text of help tip associated with button
254+
| Attributes |    |      |    |
255+
|------------|----|:----:|----|
256+
| `name` | The name that will be displayed below the button | ① | Mandatory
257+
| `media` | File name of the image used for the button. |⑦| If omitted a default picture is used
258+
| `handler` | The name of the ‘entry point’ method for your component. <br>I suggest that this name starts with an underscore (`_`) to avoid it interfering with the type ahead, as it is shared. | ② | Mandatory
259+
| `default` | The name of the method to be executed when the user clicks on the strip's button | ③ ④ ⑤| Optional if `tools`is defined
260+
| `tools` | Collection of [tool objects](#tool) that will be displayed as a linked menu | ④ ⑥
261+
| `popup` | To force the display of a linked menu indicator even if there is only one tool | ④
262+
|`ondrop` | The name of the method to be executed at the time of a drop on the button | ③
263+
| `initproc` | The name of the method to be executed when the component is loaded | ③
264+
| `helptip` | Text of help tip associated with button
264265

265266
### <a name="tool">tool object</a>
266267

267-
| Attributes | | ||
268-
|---- | ----| ----| ----|
268+
| Attributes |    |      |    |
269+
|------------|----|:----:|----|
269270
| `name` | Name of the tool as it will appear in the menu associated with the button | ① ④ | Mandatory if there are several `tool`<br>• pass "-" to display a separator line
270271
| `method` | The name of the method to run when the item is selected | ③ | Mandatory
271272
----

0 commit comments

Comments
 (0)