Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
637df10
New translations user-new.md (French)
arnaud4d Mar 27, 2026
9f1f6fd
New translations user-new.md (Spanish)
arnaud4d Mar 27, 2026
d9da919
New translations sessionclass.md (Japanese)
arnaud4d Mar 27, 2026
332e74e
New translations sessionclass.md (Japanese)
arnaud4d Mar 27, 2026
cc2e231
New translations user-new.md (Japanese)
arnaud4d Mar 27, 2026
13842da
New translations methodclass.md (Japanese)
arnaud4d Mar 27, 2026
35f1f54
New translations user-new.md (Portuguese, Brazilian)
arnaud4d Mar 27, 2026
21a060d
New translations sessionclass.md (Japanese)
arnaud4d Mar 30, 2026
138d042
New translations sessionclass.md (Japanese)
arnaud4d Mar 30, 2026
708d737
New translations systemworkerclass.md (Japanese)
arnaud4d Mar 30, 2026
7cac6c6
New translations classes.md (Japanese)
arnaud4d Mar 30, 2026
a7cba30
New translations dt_date.md (Japanese)
arnaud4d Mar 30, 2026
6ffe11d
New translations error-handling.md (Japanese)
arnaud4d Mar 30, 2026
d2d50f1
New translations methods.md (Japanese)
arnaud4d Mar 30, 2026
db5398b
New translations dt_number.md (Japanese)
arnaud4d Mar 30, 2026
379c83b
New translations systemworkerclass.md (Japanese)
arnaud4d Mar 30, 2026
71c53bc
New translations dt_date.md (Japanese)
arnaud4d Mar 30, 2026
0a80ccb
New translations dt_number.md (Japanese)
arnaud4d Mar 30, 2026
ebc227a
New translations systemworkerclass.md (Japanese)
arnaud4d Mar 30, 2026
424ee0e
New translations dt_date.md (Japanese)
arnaud4d Mar 30, 2026
2a9ea26
New translations dt_number.md (Japanese)
arnaud4d Mar 30, 2026
caec41d
New translations ordering.md (Japanese)
arnaud4d Mar 31, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,11 @@ Cuando se crea una lista utilizando una acción estándar (`listStyleType` o `li

When the list is created using [the WP SET ATTRIBUTE command](../commands-legacy/4d-write-pro-attributes.md#lists), no specific margin is managed, by default the marker is added at the left boundary of the paragraph. El desarrollador puede añadir un margen personalizado si es necesario.

añada una parte sobre el hecho de que usted define dónde empieza su lista ordenada.

:::tip Entrada de blog relacionada

[4D Write Pro – Adding a margin automatically when bullets are set using standard actions](https://blog.4d.com/4d-write-pro-adding-a-margin-automatically-when-bullets-are-set-using-standard-actions)

:::
y el nivel se gestionan con (acciones estándar)

### Listas de múltiples niveles

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,11 @@ Lorsqu'une liste est créée à l'aide d'une action standard (`listStyleType` ou

Lorsque la liste est créée à l'aide de la commande WP SET ATTRIBUTE(../commands-legacy/4d-write-pro-attributes.md#lists), aucune marge spécifique n'est gérée ; par défaut, le marqueur est ajouté à la limite gauche du paragraphe. Le développeur peut ajouter une marge personnalisée si nécessaire.

add a part about the fact that you define where your ordered list start.

:::tip Article(s) de blog sur le sujet

[4D Write Pro - Ajout automatique d'une marge lorsque des puces sont définies à l'aide d'actions standard](https://blog.4d.com/4d-write-pro-adding-a-margin-automatically-when-bullets-are-set-using-standard-actions)

:::
and the level are managed with (standard actions)

### Multi-level lists

Expand Down
36 changes: 18 additions & 18 deletions i18n/ja/docusaurus-plugin-content-docs/current/API/MethodClass.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,18 +124,18 @@ End if

:::tip

Giving a *name* to your method is recommended if you want to:
以下のような場合には、 *name* 引数を使用してメソッドに名前をつけることが推奨されます:

- use persistent method name in the [Custom watch pane of the Debugger](../Debugging/debugger#custom-watch-pane) (anonymous methods are not persistent in the debugger).
- handle the volatile method using commands such as [`Method get path`](../commands/method-get-path) and [`Method resolve path`](../commands/method-resolve-path) (anonymous methods don't have paths).
- [デバッガのカスタムウォッチエリア](../Debugging/debugger#カスタムウォッチエリア) 内で一貫したメソッド名を使用する(anonymous なメソッドはデバッガでは永続的ではありません)。
- [`Method get path`](../commands/method-get-path) [`Method resolve path`](../commands/method-resolve-path) などのコマンドを使用して揮発性のメソッドを管理する(anonymous なメソッドはパスを持ちません)。

:::

The resulting 4D.Method object can be checked using [`checkSyntax()`](#checksyntax) and executed using `()`, [`.apply()`](#apply) or [`.call()`](#call).
返される4D.Method オブジェクトは、[`checkSyntax()`](#checksyntax) を使用してチェックできる他、 `()` [`.apply()`](#apply) あるいは [`.call()`](#call) を使用して実行可能です。

:::note

Named volatile method objects are not project methods, they are not stored in disk files and cannot be called by commands such as [`EXECUTE METHOD`](../commands/execute-method). On the other hand, since they inherit from the [`4D.Function`](./FunctionClass.md) class, they can be used wherever a `4D.Function` object is expected.
命名された揮発性のメソッドオブジェクトはプロジェクトメソッドではありません。これらはディスクファイル内に保存はされず、[`EXECUTE METHOD`](../commands/execute-method) などのコマンドで呼び出すことはできません。 その一方で、これらは[`4D.Function`](./FunctionClass.md) クラスを継承するため、 `4D.Function` オブジェクトが想定されているところであればどこでも使用可能です。

:::

Expand Down Expand Up @@ -190,26 +190,26 @@ var $result:=$m.call(Null; 10; 5) //50

<div class="no-index">

| 引数 | 型 | | 説明 |
| --- | ------ | --------------------------- | -------------------------- |
| 戻り値 | Object | <- | Syntax check result object |
| 引数 | 型 | | 説明 |
| --- | ------ | --------------------------- | ------------------- |
| 戻り値 | Object | <- | シンタックスチェックの結果オブジェクト |

</div>
<!-- END REF -->

#### 説明

The `.checkSyntax()` function <!-- REF #MethodClass.checkSyntax().Summary -->checks the syntax of the source code of the `4D.Method` object and returns a result object<!-- END REF -->.
`.checkSyntax()` 関数は <!-- REF #MethodClass.checkSyntax().Summary -->`4D.Method` オブジェクトのソースコードに対してシンタックスをチェックし、その結果のオブジェクトを返します<!-- END REF -->

The Result object contains the following properties:
結果オブジェクトには、以下のプロパティが格納されています:

| プロパティ | | 型 | 説明 |
| ------- | --------------------------------------------------------------------------------- | ------------------- | ---------------------------------------------------------------------------------------- |
| success | | Boolean | True if no syntax error was detected, false otherwise |
| errors | | Object の Collection | **以下はerror または warningの場合にのみ返されます**。 Collection of objects describing errors or warnings |
| | [].isError | Boolean | エラーならTrue、それ以外の場合は警告 |
| | [].message | Text | Error or warning message |
| | [].lineNumber | Integer | Line number of error in the code |
| プロパティ | | 型 | 説明 |
| ------- | --------------------------------------------------------------------------------- | ------------------- | ------------------------------------------------------------------ |
| success | | Boolean | シンタックスエラーが何も検出されなかった場合にはTrue、それ以外の場合にはFalse |
| errors | | Object の Collection | **以下はerror または warningの場合にのみ返されます**。 エラーまたは警告の詳細を格納したオブジェクトのコレクション |
| | [].isError | Boolean | エラーならTrue、それ以外の場合は警告 |
| | [].message | Text | エラーならTrue、それ以外の場合は警告 |
| | [].lineNumber | Integer | コード内でのエラーが発生した行番号 |

#### 例題

Expand Down Expand Up @@ -237,7 +237,7 @@ End if

#### 説明

The `.name` property <!-- REF #MethodClass.name.Summary -->contains the name of the `4D.Method` object, if it was declared in the *name* parameter of the `new()` constructor<!-- END REF -->. Otherwise, the property is not returned.
`.name` プロパティには、<!-- REF #MethodClass.name.Summary -->`new()` コンストラクターの *name* 引数内で宣言されていれば、`4D.Method` オブジェクトの名前が格納されています<!-- END REF -->。 それ以外の場合、プロパティは返されません。

このプロパティは **読み取り専用** です。

Expand Down
Loading
Loading