Skip to content

Commit e27233a

Browse files
committed
Finish updating Collection group
1 parent 238f51a commit e27233a

File tree

3 files changed

+25
-25
lines changed

3 files changed

+25
-25
lines changed

docs/application/application.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -441,9 +441,9 @@ Determines whether the file at path can be opened as a Premiere Pro [project](..
441441

442442
#### Parameters
443443

444-
| Parameter | Type | Description |
445-
| --------- | ------ | ----------------- |
446-
| `path` | String | A path to a file. |
444+
| Argument | Type | Description |
445+
| -------- | ------ | ----------------- |
446+
| `path` | String | A path to a file. |
447447

448448
#### Returns
449449

@@ -490,9 +490,9 @@ Creates a new .prproj [Project object](../general/project.md), at the specified
490490

491491
#### Parameters
492492

493-
| Parameter | Type | Description |
494-
| --------- | ------ | -------------------------------------------------------------------- |
495-
| `path` | String | A full path to new project; a .prproj extension will *not* be added. |
493+
| Argument | Type | Description |
494+
| -------- | ------ | -------------------------------------------------------------------- |
495+
| `path` | String | A full path to new project; a .prproj extension will *not* be added. |
496496

497497
#### Returns
498498

@@ -510,7 +510,7 @@ Opens the file at the specified path, as a Premiere Pro [Project object](../gene
510510

511511
#### Parameters
512512

513-
| Parameter | Type | Description |
513+
| Argument | Type | Description |
514514
| -------------------------- | ------- | --------------------------------------------------------------- |
515515
| `path` | String | Full path to the document to be opened. |
516516
| `suppressConversionDialog` | Boolean | Optional. Suppress project conversion dialog. |
@@ -534,7 +534,7 @@ Opens an FCP XML file as a Premiere Pro [Project object](../general/project.md)
534534

535535
#### Parameters
536536

537-
| Parameter | Type | Description |
537+
| Argument | Type | Description |
538538
| ---------- | ------ | ----------- |
539539
| `path` | String | |
540540
| `projPath` | String | |
@@ -573,7 +573,7 @@ Determines whether proxy usage is currently enabled.
573573

574574
#### Parameters
575575

576-
| Parameter | Type | Description |
576+
| Argument | Type | Description |
577577
| --------- | ------- | ----------------------------------------- |
578578
| `enabled` | Integer | `1` turns proxies on, `0` turns them off. |
579579

@@ -593,7 +593,7 @@ Whether extension with the given extensionID persists, within this session.
593593

594594
#### Parameters
595595

596-
| Parameter | Type | Description |
596+
| Argument | Type | Description |
597597
| ------------- | ------- | ------------------------------------------------------------- |
598598
| `extensionID` | String | Which extension to modify. |
599599
| `persistent` | Integer | Pass `1` to keep extension in memory, `0` to allow unloading. |
@@ -625,7 +625,7 @@ Specifies the path to be used for one of Premiere Pro's scratch disk paths.
625625

626626
#### Parameters
627627

628-
| Parameter | Type | Description |
628+
| Argument | Type | Description |
629629
| ----------------- | ---------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
630630
| `path` | String | The new path to be used. |
631631
| `scratchDiskType` | `ScratchDiskType` enum | Enumerated value, must be one of the following:<ul><li>`ScratchDiskType.FirstVideoCaptureFolder`</li><li>`ScratchDiskType.FirstAudioCaptureFolder`</li><li>`ScratchDiskType.FirstVideoPreviewFolder`</li><li>`ScratchDiskType.FirstAudioPreviewFolder`</li><li>`ScratchDiskType.FirstAutoSaveFolder`</li><li>`ScratchDiskType.FirstCCLibrariesFolder`</li><li>`ScratchDiskType.FirstCapsuleMediaFolder`</li></ul> |
@@ -655,7 +655,7 @@ Writes a string to Premiere Pro's Events panel.
655655

656656
#### Parameters
657657

658-
| Parameter | Type | Description |
658+
| Argument | Type | Description |
659659
| ----------- | ------ | ---------------------------------------------------------------------------- |
660660
| `message` | String | A message to display. |
661661
| `decorator` | String | Decorator, one of:<ul><li>`info`</li><li>`warning`</li><li>`error`</li></ul> |
@@ -676,7 +676,7 @@ Set workspace as active. Use [app.getWorkspaces()](#appgetworkspaces) to get a l
676676

677677
#### Parameters
678678

679-
| Parameter | Type | Description |
679+
| Argument | Type | Description |
680680
| ----------- | ------ | -------------------------- |
681681
| `workspace` | String | The name of the workspace. |
682682

docs/collection/componentcollection.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
#### Description
2727

28-
*add a description*
28+
The number of items in a ComponentCollection.
2929

3030
#### Type
3131

docs/collection/markercollection.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@ Create a new [Marker object](../general/marker.md) on a project item or a sequen
4646

4747
#### Parameters
4848

49-
| Argument | Type | Description |
50-
|------------|---------|-----------------------------------------------------|
51-
| `time` | Float | A time, in seconds, where marker should be created. |
49+
| Argument | Type | Description |
50+
| -------- | ----- | --------------------------------------------------- |
51+
| `time` | Float | A time, in seconds, where marker should be created. |
5252

5353
#### Returns
5454

@@ -69,15 +69,15 @@ Remove a given marker object from a collection.
6969

7070
#### Parameters
7171

72-
| Argument | Type | Description |
73-
|------------|----------------------------------------------|--------------------------------------------|
74-
| `marker` | [Marker object](../general/marker.md) | A marker object to remove from collection. |
72+
| Argument | Type | Description |
73+
| -------- | ------------------------------------- | ------------------------------------------ |
74+
| `marker` | [Marker object](../general/marker.md) | A marker object to remove from collection. |
7575

7676
#### Returns
7777

7878
Boolean.
7979

80-
**Examples**
80+
#### Examples
8181

8282
Remove all markers from the active sequence
8383

@@ -151,8 +151,8 @@ Get the next available marker, sorted by seconds, starting from a given one.
151151

152152
#### Parameters
153153

154-
| Argument | Type | Description |
155-
|-----------------|----------------------------------------------|---------------------------------------------------------|
154+
| Argument | Type | Description |
155+
| --------------- | ------------------------------------- | ------------------------------------------------------- |
156156
| `currentMarker` | [Marker object](../general/marker.md) | A starting marker object, from which to get a next one. |
157157

158158
#### Returns
@@ -174,8 +174,8 @@ Get the previous available marker, sorted by seconds, starting from a given one.
174174

175175
#### Parameters
176176

177-
| Argument | Type | Description |
178-
|-----------------|----------------------------------------------|-------------------------------------------------------------|
177+
| Argument | Type | Description |
178+
| --------------- | ------------------------------------- | ----------------------------------------------------------- |
179179
| `currentMarker` | [Marker object](../general/marker.md) | A starting marker object, from which to get a previous one. |
180180

181181
#### Returns

0 commit comments

Comments
 (0)